ultimate-research / ssbh_lib

Reading and writing SSBH file formats in Rust
MIT License
8 stars 3 forks source link

investigate if matrices are row-major or column-major #135

Closed ScanMountGoat closed 2 years ago

ScanMountGoat commented 2 years ago

The tests for ssbh_lib assume row-major, but the matrices produce the right decomposition assuming column-major for glam without applying any kind of transposition. The ssbh_lib tests can be fixed by using the identity (A.T @ B.T).T = B @ A