Trait MatMinor

Source
pub trait MatMinor<T, Other> {
    // Required method
    fn minor(&self, row: u32, column: u32) -> T;
}
Expand description

trait for the minor of a matrix the minor is the determinant of the matrix without the given row and column

Required Methods§

Source

fn minor(&self, row: u32, column: u32) -> T

Implementors§

Source§

impl<T> MatMinor<T, Mat2<T>> for Mat3<T>
where T: Number,

Source§

impl<T> MatMinor<T, Mat3<T>> for Mat4<T>
where T: Number,

Source§

impl<T> MatMinor<T, T> for Mat2<T>
where T: Number,