Skip to content

Commit

Permalink
Update name of variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jan 10, 2025
1 parent d781b87 commit 5059eff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions experiments/2024-12-09/src/geometry/shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@ impl<'r, NewOps, T> ShapeExtender<'r, NewOps, T> {
NewOps: CombinRight<Handle<T>>,
T: Operation + 'static,
{
let vertex = self.store.insert(op.into());
let op = self.store.insert(op.into());

self.sequence.push(OperationInSequence {
operation: vertex.to_any(),
operation: op.to_any(),
previous: self.sequence.last().map(|op| AnyOp::new(op.clone())),
});

ShapeExtender {
store: self.store,
sequence: self.sequence,
new_ops: self.new_ops.push_right(vertex),
new_ops: self.new_ops.push_right(op),
}
}

Expand Down

0 comments on commit 5059eff

Please sign in to comment.