From a848e243f8d43c3e5b14f512cf0a416b9b4fae0f Mon Sep 17 00:00:00 2001 From: gserena Date: Fri, 30 May 2025 11:55:25 -0400 Subject: [PATCH] remove mirror param --- rust/kcl-lib/src/execution/geometry.rs | 3 --- rust/kcl-lib/src/std/sketch.rs | 1 - 2 files changed, 4 deletions(-) diff --git a/rust/kcl-lib/src/execution/geometry.rs b/rust/kcl-lib/src/execution/geometry.rs index 113cbe123..d27764d91 100644 --- a/rust/kcl-lib/src/execution/geometry.rs +++ b/rust/kcl-lib/src/execution/geometry.rs @@ -583,9 +583,6 @@ pub struct Sketch { pub artifact_id: ArtifactId, #[ts(skip)] pub original_id: uuid::Uuid, - /// If the sketch includes a mirror. - #[serde(skip)] - pub mirror: Option, pub units: UnitLen, /// Metadata. #[serde(skip)] diff --git a/rust/kcl-lib/src/std/sketch.rs b/rust/kcl-lib/src/std/sketch.rs index d2c6c344b..db1292c6e 100644 --- a/rust/kcl-lib/src/std/sketch.rs +++ b/rust/kcl-lib/src/std/sketch.rs @@ -1409,7 +1409,6 @@ pub(crate) async fn inner_start_profile( on: sketch_surface.clone(), paths: vec![], units, - mirror: Default::default(), meta: vec![args.source_range.into()], tags: if let Some(tag) = &tag { let mut tag_identifier: TagIdentifier = tag.into();