Update name of function parameter

This commit is contained in:
Hanno Braun 2025-01-15 20:27:11 +01:00
parent d0e85b8f23
commit 94240dab56

View File

@ -3,7 +3,7 @@ use std::{fmt, ops::Deref, rc::Rc};
use super::tri_mesh::TriMesh;
pub trait Operation: fmt::Display {
fn triangles(&self, triangles: &mut TriMesh);
fn triangles(&self, mesh: &mut TriMesh);
fn children(&self) -> Vec<AnyOp>;
}