#[repr(C)]
pub struct Mat3 { pub x_axis: Vec3, pub y_axis: Vec3, pub z_axis: Vec3, }
Expand description

A 3x3 column major matrix.

Fields

x_axis: Vec3y_axis: Vec3z_axis: Vec3

Implementations

Creates a 3x3 matrix with all elements set to 0.0.

Creates a 3x3 identity matrix.

Creates a 3x3 matrix from three column vectors.

Creates a 3x3 matrix from a [f32; 9] stored in column major order. If your data is stored in row major you will need to transpose the returned matrix.

Creates a [f32; 9] storing data in column major order. If you require data in row major order transpose the matrix first.

Creates a 3x3 matrix from a [[f32; 3]; 3] stored in column major order. If your data is in row major order you will need to transpose the returned matrix.

Creates a [[f32; 3]; 3] storing data in column major order. If you require data in row major order transpose the matrix first.

Creates a 3x3 homogeneous transformation matrix from the given scale, rotation angle (in radians) and translation.

The resulting matrix can be used to transform 2D points and vectors.

Creates a 3x3 rotation matrix from the given quaternion.

Creates a 3x3 rotation matrix from a normalized rotation axis and angle (in radians).

Creates a 3x3 rotation matrix from the given Euler angles (in radians).

Creates a 3x3 rotation matrix from angle (in radians) around the x axis.

Creates a 3x3 rotation matrix from angle (in radians) around the y axis.

Creates a 3x3 rotation matrix from angle (in radians) around the z axis.

Creates a 3x3 non-uniform scale matrix.

👎Deprecated since 0.10.0:

please use .x_axis instead

👎Deprecated since 0.10.0:

please use .y_axis instead

👎Deprecated since 0.10.0:

please use .z_axis instead

👎Deprecated since 0.10.0:

please use .x_axis instead

👎Deprecated since 0.10.0:

please use .y_axis instead

👎Deprecated since 0.10.0:

please use .z_axis instead

👎Deprecated since 0.10.0:

please use .x_axis instead

👎Deprecated since 0.10.0:

please use .y_axis instead

👎Deprecated since 0.10.0:

please use .z_axis instead

Returns the transpose of self.

Returns the determinant of self.

Returns the inverse of self.

If the matrix is not invertible the returned matrix will be invalid.

Transforms a Vec3A.

Transforms a Vec3.

Multiplies two 3x3 matrices.

Adds two 3x3 matrices.

Subtracts two 3x3 matrices.

Multiplies a 3x3 matrix by a scalar.

Transforms the given Vec2 as 2D point. This is the equivalent of multiplying the Vec2 as a Vec3 where z is 1.0.

Transforms the given Vec2 as 2D vector. This is the equivalent of multiplying the Vec2 as a Vec3 where z is 0.0.

Returns true if the absolute difference of all elements between self and other is less than or equal to max_abs_diff.

This can be used to compare if two Mat3’s contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more on floating point comparisons see https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Converts this type into a mutable reference of the (usually inferred) input type.

Converts this type into a shared reference of the (usually inferred) input type.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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

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

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

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

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

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

The resulting type after applying the - operator.

Performs the - operation. Read more

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.