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-05 20:36:38 +00:00
|
|
|
//crate::impl_vector_3!();
|