From d2762e712a611f44a5122994df952611ddc683de Mon Sep 17 00:00:00 2001 From: Mate Kovacs Date: Fri, 16 Aug 2024 16:56:59 +0900 Subject: [PATCH] address review comments --- examples/src/heater_coil.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/src/heater_coil.rs b/examples/src/heater_coil.rs index 94645a3..f45e586 100644 --- a/examples/src/heater_coil.rs +++ b/examples/src/heater_coil.rs @@ -40,8 +40,6 @@ pub fn shape() -> Shape { let attach_1 = Edge::segment(p1, p1 - DVec3::new(0.0, attach_len, 0.0)); let path = Wire::from_edges(&[attach_0, coil, attach_1]); - //path.into_shape().union(&face_profile.into_shape()).into_shape() - - let pipe_solid: Solid = face_profile.sweep_along(&path); + let pipe_solid = face_profile.sweep_along(&path); pipe_solid.into_shape() }