Struct nalgebra::Identity [] [src]

pub struct Identity;

Special identity matrix. All its operation are no-ops.

Methods

impl Identity
[src]

Creates a new identity matrix.

Trait Implementations

impl Copy for Identity
[src]

impl Debug for Identity
[src]

Formats the value using the given formatter.

impl Clone for Identity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Decodable for Identity
[src]

impl Encodable for Identity
[src]

impl PartialEq for Identity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Identity
[src]

impl Display for Identity
[src]

Formats the value using the given formatter.

impl One for Identity
[src]

Returns the multiplicative identity element of Self, 1. Read more

impl Inverse for Identity
[src]

Returns the inverse of m.

In-place version of inverse.

impl<T: Clone> Mul<T> for Identity
[src]

The resulting type after applying the * operator

The method for the * operator

impl Transpose for Identity
[src]

Computes the transpose of a matrix.

In-place version of transposed.

impl<V: Clone> Translate<V> for Identity
[src]

Apply a translation to an object.

Apply an inverse translation to an object.

impl<V: Clone> Rotate<V> for Identity
[src]

Applies a rotation to v.

Applies an inverse rotation to v.

impl<V: Clone> AbsoluteRotate<V> for Identity
[src]

This is the same as: Read more

impl<V: Clone> Transform<V> for Identity
[src]

Applies a transformation to v.

Applies an inverse transformation to v.