forked from M-Labs/nalgebra
Add doc-tests to rotation_construction.
This commit is contained in:
parent
7d9d47d9ea
commit
80fc057ead
@ -14,6 +14,16 @@ where
|
|||||||
DefaultAllocator: Allocator<N, D, D>,
|
DefaultAllocator: Allocator<N, D, D>,
|
||||||
{
|
{
|
||||||
/// Creates a new square identity rotation of the given `dimension`.
|
/// Creates a new square identity rotation of the given `dimension`.
|
||||||
|
///
|
||||||
|
/// # Example
|
||||||
|
/// ```
|
||||||
|
/// # use nalgebra::Quaternion;
|
||||||
|
/// let rot1 = Quaternion::identity();
|
||||||
|
/// let rot2 = Quaternion::new(1.0, 2.0, 3.0, 4.0);
|
||||||
|
///
|
||||||
|
/// assert_eq!(rot1 * rot2, rot2);
|
||||||
|
/// assert_eq!(rot2 * rot1, rot2);
|
||||||
|
/// ```
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn identity() -> Rotation<N, D> {
|
pub fn identity() -> Rotation<N, D> {
|
||||||
Self::from_matrix_unchecked(MatrixN::<N, D>::identity())
|
Self::from_matrix_unchecked(MatrixN::<N, D>::identity())
|
||||||
|
Loading…
Reference in New Issue
Block a user