Derive Copy for Point

This commit is contained in:
Hanno Braun 2024-10-31 22:00:48 +01:00
parent e1d4de9f55
commit 9a01093fd8

View File

@ -338,6 +338,7 @@ impl Mul<Self> for Mat4x4 {
}
}
#[derive(Clone, Copy)]
pub struct Point {
pub coords: [f32; 3],
}