Update name of function parameter

This commit is contained in:
Hanno Braun 2025-01-15 20:28:01 +01:00
parent 9de3fecbec
commit 8aabfd5fbe

View File

@ -31,9 +31,9 @@ impl fmt::Display for Shape {
}
impl Operation for Shape {
fn triangles(&self, triangles: &mut TriMesh) {
fn triangles(&self, mesh: &mut TriMesh) {
if let Some(op) = self.sequence.last() {
op.triangles(triangles);
op.triangles(mesh);
}
}