nalgebra/nalgebra-glm/src/gtc/matrix_inverse.rs

20 lines
622 B
Rust
Raw Normal View History

2018-10-22 04:11:27 +08:00
use na::{DefaultAllocator, Real};
use aliases::TMat;
2018-10-22 04:11:27 +08:00
use traits::{Alloc, Dimension};
/// Fast matrix inverse for affine matrix.
pub fn affine_inverse<N: Real, D: Dimension>(m: TMat<N, D, D>) -> TMat<N, D, D>
2018-10-22 13:00:10 +08:00
where DefaultAllocator: Alloc<N, D, D> {
// FIXME: this should be optimized.
m.try_inverse().unwrap_or_else(TMat::<_, D, D>::zeros)
}
/// Compute the transpose of the inverse of a matrix.
pub fn inverse_transpose<N: Real, D: Dimension>(m: TMat<N, D, D>) -> TMat<N, D, D>
2018-10-22 13:00:10 +08:00
where DefaultAllocator: Alloc<N, D, D> {
2018-10-22 04:11:27 +08:00
m.try_inverse()
.unwrap_or_else(TMat::<_, D, D>::zeros)
.transpose()
}