[][src]Trait nova_math::traits::TransposeAssign

pub trait TransposeAssign {
    fn transpose_assign(&mut self);
}

This type supports performing a matrix transpose

Info

Similar to the AddAssign or MulAssign traits in that it takes a mutable reference to the underlying object and performs the transpose in place.

Required methods

fn transpose_assign(&mut self)

Loading content...

Implementors

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

Loading content...