pub trait MatrixColumn {
type Column;
// Required method
fn column(&self, i: usize) -> Self::Column;
}Expand description
Extension trait for matrix column access (like nalgebra’s .column())
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl<T: Copy> MatrixColumn for [T; 2]
impl<T: Copy> MatrixColumn for [T; 2]
Source§impl<T: Scalar> MatrixColumn for Matrix2<T>
Available on non-SPIR-V only.
impl<T: Scalar> MatrixColumn for Matrix2<T>
Available on non-SPIR-V only.
Source§impl<T: Scalar> MatrixColumn for Matrix3<T>
Available on non-SPIR-V only.
impl<T: Scalar> MatrixColumn for Matrix3<T>
Available on non-SPIR-V only.