Skip to content

Commit

Permalink
Update nomenclature
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jan 31, 2025
1 parent e311c9d commit f7d0464
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions experiments/2024-12-09/src/topology/sweep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
}
Expand Down

0 comments on commit f7d0464

Please sign in to comment.