Update name of function parameter

This commit is contained in:
Hanno Braun 2025-01-15 20:31:40 +01:00
parent 2dd2e95929
commit b3f9745f56

View File

@ -128,8 +128,8 @@ impl fmt::Display for OperationView {
}
impl Operation for OperationView {
fn triangles(&self, triangles: &mut TriMesh) {
self.operation.triangles(triangles);
fn triangles(&self, mesh: &mut TriMesh) {
self.operation.triangles(mesh);
}
fn children(&self) -> Vec<AnyOp> {