Struct rust_3d::Matrix3 [] [src]

pub struct Matrix3 {
    pub data: [[f64; 3]; 3],
}

Matrix3, a matrix with 3 rows and columns

Fields

Methods

impl Matrix3
[src]

[src]

Creates a new matrix which contains only zeroes

[src]

Creates a new matrix which applies translation

[src]

Creates a new matrix which applies scaling

[src]

Creates a new matrix which applies rotation

Trait Implementations

impl Debug for Matrix3
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Matrix3
[src]

[src]

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

[src]

This method tests for !=.

impl PartialOrd for Matrix3
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for Matrix3
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Matrix3
[src]

[src]

Returns the "default value" for a type. Read more

impl Mul for Matrix3
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Mul<f64> for Matrix3
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

Auto Trait Implementations

impl Send for Matrix3

impl Sync for Matrix3