mirror of
https://github.com/hannobraun/Fornjot
synced 2025-08-11 03:36:07 +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 {
|
impl Operation for OperationInSequence {
|
||||||
fn triangles(&self, triangles: &mut TriMesh) {
|
fn triangles(&self, mesh: &mut TriMesh) {
|
||||||
if let Some(op) = &self.previous {
|
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> {
|
fn children(&self) -> Vec<AnyOp> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user