[][src]Trait nova_math::traits::Transpose

pub trait Transpose {
    fn transpose(self) -> Self;
}

This types supports performing a matrix transpose

Info

Similar to the Add or Mul traits in that it takes ownership and passes the underlying object through the function.

Required methods

fn transpose(self) -> Self

Loading content...

Implementors

impl<T: Real> Transpose for TMat4x4<T>[src]

Loading content...