forked from StrafesNET/strafe-project
9 lines
131 B
Rust
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!();
|