vectrix icon indicating copy to clipboard operation
vectrix copied to clipboard

🏹 Stack-allocated, constant-size, matrix type implemented with const generics

Results 3 vectrix issues
Sort by recently updated
recently updated
newest added

This is something that is commonly implemented in vector libraries. ### Examples ```rust use vectrix::vector; let v = vector![1, 2, 3]; assert_eq!(v.xyx(), vector![1, 2, 1]); assert_eq!(v.zx(), vector![3, 1]); ```