Type Definition nalgebra::base::Matrix3 [−][src]
pub type Matrix3<N> = Matrix<N, U3, U3, Owned<N, U3, U3>>;
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<N: SimdRealField> From<Unit<Quaternion<N>>> for Matrix3<N> where
N::Element: SimdRealField,
impl<N: SimdRealField> From<Unit<Quaternion<N>>> for Matrix3<N> where
N::Element: SimdRealField,
Performs the conversion.