From e4ed82f8bcca866e6568b98e070209a834b59607 Mon Sep 17 00:00:00 2001 From: minsung Date: Wed, 15 Apr 2026 12:14:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20occt.rs=20unused=5Fmut=20=EA=B2=BD?= =?UTF-8?q?=EA=B3=A0=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit breast wall 메시 변수를 추가 수정 없이 바로 parts 에 push 하므로 mut 불필요. Co-Authored-By: Claude Sonnet 4.6 --- cimery/crates/kernel/src/occt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cimery/crates/kernel/src/occt.rs b/cimery/crates/kernel/src/occt.rs index dd46a2f..e931903 100644 --- a/cimery/crates/kernel/src/occt.rs +++ b/cimery/crates/kernel/src/occt.rs @@ -179,7 +179,7 @@ mod inner { let hw = bww * 0.5; let hbt = bwt * 0.5; let profile = vec![(-hw, -hbt), (hw, -hbt), (hw, hbt), (-hw, hbt)]; - let mut m = workplane_extrude_xz_y(&profile, bwh)?; + let m = workplane_extrude_xz_y(&profile, bwh)?; // Breast wall at footing top, Y=0..bwh parts.push(m); }