strafe-project/fixed_wide_vectors/src/vector.rs
2024-09-05 15:43:26 -07:00

10 lines
171 B
Rust

#[derive(Clone,Copy,Hash,Eq,PartialEq)]
pub struct Vector<const N:usize,T>{
pub(crate) array:[T;N],
}
crate::impl_vector!();
//cross product
//crate::impl_vector_3!();