SqMatrix

Trait SqMatrix 

Source
pub trait SqMatrix<T, U>: Construct<T> + Mul<U, Output = U>
where T: Construct<T>, U: Vector<T>,
{ }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> SqMatrix<T, Vector3<T>> for Matrix3<T>
where T: Construct<T>,

Source§

impl<T> SqMatrix<T, Vector4<T>> for Matrix4<T>
where T: Construct<T>,