Update nomenclature

This commit is contained in:
Hanno Braun 2025-01-31 21:16:13 +01:00
parent e311c9d00d
commit f7d046408b

View File

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