From 85c944e195b4698719cd7f5b79be457422db8e42 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 28 Jun 2022 15:54:31 +0200 Subject: [PATCH] Update variable name --- crates/fj-operations/src/sketch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-operations/src/sketch.rs b/crates/fj-operations/src/sketch.rs index 643a25522..40678a332 100644 --- a/crates/fj-operations/src/sketch.rs +++ b/crates/fj-operations/src/sketch.rs @@ -16,12 +16,12 @@ impl ToShape for fj::Sketch { _: Tolerance, _: &mut DebugInfo, ) -> Result>, ValidationError> { - let mut shape = Shape::new(); + let mut tmp = Shape::new(); let surface = Surface::xy_plane(); let points = self.to_points().into_iter().map(Point::from); - let sketch = Face::builder(surface, &mut shape) + let sketch = Face::builder(surface, &mut tmp) .with_exterior_polygon(points) .with_color(self.color()) .build()