Skip to content

Commit

Permalink
Make Translate show up in operations tree
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Feb 12, 2025
1 parent 4416110 commit f9e7aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiments/2024-12-09/src/topology/sweep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ pub trait SweepExt {
impl SweepExt for Handle<Face> {
fn sweep(self, path: impl Into<Vector<3>>) -> Sweep {
let bottom = self;
let top = bottom.flip().translate(path);
let top = Handle::new(bottom.flip().translate(path));

let output = top.output.connect(bottom);
let output = top.connect(bottom);
Sweep {
output: Handle::new(output),
}
Expand Down

0 comments on commit f9e7aa4

Please sign in to comment.