Rename variable to increase clarity

This commit is contained in:
Hanno Braun 2023-12-14 13:19:22 +01:00
parent ea9c5f1b83
commit 71054ea227

View File

@ -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)
}