diff --git a/models/star/src/lib.rs b/models/star/src/lib.rs index 1e74957aa..ca1ad15ab 100644 --- a/models/star/src/lib.rs +++ b/models/star/src/lib.rs @@ -44,7 +44,7 @@ pub fn model( } let bottom_surface = services.objects.surfaces.xy_plane(); - let path = Vector::from([0., 0., h]); + let sweep_path = Vector::from([0., 0., h]); Sketch::empty() .add_region( @@ -54,6 +54,6 @@ pub fn model( .insert(services)]) .insert(services), ) - .sweep_sketch(bottom_surface, path, services) + .sweep_sketch(bottom_surface, sweep_path, services) .insert(services) }