Add missing Copy marker to Vec4

This commit is contained in:
Matthew Gordon 2025-03-29 15:26:13 -03:00
parent 908da3d995
commit 44bc147421
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ use itertools::izip;
use std::ops::{Add, AddAssign, Mul, MulAssign, Sub, SubAssign};
#[derive(PartialEq, Debug)]
#[derive(PartialEq, Debug, Clone, Copy)]
pub struct Vec4<T: Float> {
pub coords: [T; 4],
}