mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-09 20:38:30 +00:00
Update name of function parameter
This commit is contained in:
parent
8aabfd5fbe
commit
77bb1a8f17
@ -52,11 +52,11 @@ struct OperationInSequence {
|
||||
}
|
||||
|
||||
impl Operation for OperationInSequence {
|
||||
fn triangles(&self, triangles: &mut TriMesh) {
|
||||
fn triangles(&self, mesh: &mut TriMesh) {
|
||||
if let Some(op) = &self.previous {
|
||||
op.triangles(triangles);
|
||||
op.triangles(mesh);
|
||||
}
|
||||
self.operation.triangles(triangles);
|
||||
self.operation.triangles(mesh);
|
||||
}
|
||||
|
||||
fn children(&self) -> Vec<AnyOp> {
|
||||
|
Loading…
Reference in New Issue
Block a user