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 ea9c5f1 commit 71054ea
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 @@ -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(
Expand All @@ -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)
}

0 comments on commit 71054ea

Please sign in to comment.