strafe-client/fixed_wide_vectors/src/vector.rs
2024-09-05 13:36:38 -07:00

9 lines
131 B
Rust

pub struct Vector<const N:usize,T>{
pub(crate) array:[T;N],
}
crate::impl_vector!();
//cross product
//crate::impl_vector_3!();