Skip to content

Commit

Permalink
Rename variable to increase clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Dec 15, 2023
1 parent 19ad445 commit ea9c5f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/star/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn model(
inner_points.push([x / 2., y / 2.]);
}

let surface = services.objects.surfaces.xy_plane();
let bottom_surface = services.objects.surfaces.xy_plane();
let path = Vector::from([0., 0., h]);

Sketch::empty()
Expand All @@ -54,6 +54,6 @@ pub fn model(
.insert(services)])
.insert(services),
)
.sweep_sketch(surface, path, services)
.sweep_sketch(bottom_surface, path, services)
.insert(services)
}

0 comments on commit ea9c5f1

Please sign in to comment.