Type Definition nalgebra::core::Matrix3 [] [src]

type Matrix3<N> = MatrixN<N, U3>;

A stack-allocated, column-major, 3x3 square matrix.

Methods

impl<N: Real> Matrix3<N>
[src]

[src]

Builds a 2 dimensional homogeneous rotation matrix from an angle in radian.

Trait Implementations

impl<N1: Real, N2: Real + SupersetOf<N1>> SubsetOf<Matrix3<N2>> for UnitComplex<N1>
[src]

[src]

The inclusion map: converts self to the equivalent element of its superset.

[src]

Checks if element is actually part of the subset Self (and can be converted to it).

[src]

Use with care! Same as self.to_superset but without any property checks. Always succeeds.

[src]

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more