strafe-project/fixed_wide_vectors/src/vector.rs

10 lines
169 B
Rust
Raw Normal View History

2024-09-05 22:43:02 +00:00
#[derive(Clone,Copy,Hash,Eq,PartialEq)]
2024-09-05 20:36:38 +00:00
pub struct Vector<const N:usize,T>{
pub(crate) array:[T;N],
2024-08-23 22:42:48 +00:00
}
2024-09-05 20:36:38 +00:00
crate::impl_vector!();
2024-09-04 20:38:29 +00:00
//cross product
2024-09-06 18:25:46 +00:00
crate::impl_vector_3!();