Type Definition nalgebra::base::Matrix3 [−][src]
pub type Matrix3<T> = Matrix<T, U3, U3, ArrayStorage<T, 3, 3>>;
Expand description
A stack-allocated, column-major, 3x3 square matrix.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.
Implementations
Builds a 2 dimensional homogeneous rotation matrix from an angle in radian.
Creates a new homogeneous matrix that applies a scaling factor for each dimension with respect to point.
Can be used to implement zoom_to
functionality.
Trait Implementations
Performs the conversion.
impl<T: SimdRealField> From<Unit<Quaternion<T>>> for Matrix3<T> where
T::Element: SimdRealField,
impl<T: SimdRealField> From<Unit<Quaternion<T>>> for Matrix3<T> where
T::Element: SimdRealField,
Performs the conversion.