Update name of variable

This commit is contained in:
Hanno Braun 2025-01-31 21:16:26 +01:00
parent f7d046408b
commit 097bdf18b8

View File

@ -60,10 +60,10 @@ impl SweepExt for Handle<Face> {
vertices: &mut Store<Vertex>,
) -> Sweep {
let bottom = self;
let target = faces
let top = faces
.insert(bottom.flip(surfaces).translate(path, surfaces, vertices));
let solid = Solid::connect_faces([target, bottom], faces, surfaces);
let solid = Solid::connect_faces([top, bottom], faces, surfaces);
Sweep { output: solid }
}