I'm currently trying to implement some const algebra and I've noticed some things that are available in other crates (like nalgebra) that would make sense in this crate:
CMatrix::identity, CMatrix::zero
- A way to access the contained SoftF64 (make
get public? maybe something like finish that returns [[SoftF64; C]; R] instead of [[f64; C]; R])
- A way to create a CMatrix/CVector from
SoftF64s
- Dot product
- Cross product (not sure how easy this would be)
I'm currently trying to implement some const algebra and I've noticed some things that are available in other crates (like
nalgebra) that would make sense in this crate:CMatrix::identity,CMatrix::zerogetpublic? maybe something like finish that returns[[SoftF64; C]; R]instead of[[f64; C]; R])SoftF64s