Struct glam::f64::DMat2[][src]

#[repr(transparent)]pub struct DMat2(_);

A 2x2 column major matrix.

Implementations

impl DMat2[src]

pub const ZERO: Self[src]

A 2x2 matrix with all elements set to 0.0.

pub const IDENTITY: Self[src]

A 2x2 identity matrix, where all diagonal elements are 1, and all off-diagonal elements are 0.

pub const fn zero() -> Self[src]

👎 Deprecated:

use Mat2::ZERO instead

Creates a 2x2 matrix with all elements set to 0.0.

pub const fn identity() -> Self[src]

👎 Deprecated:

use Mat2::IDENTITY instead

Creates a 2x2 identity matrix.

pub fn from_cols(x_axis: DVec2, y_axis: DVec2) -> Self[src]

Creates a 2x2 matrix from two column vectors.

pub fn from_cols_array(m: &[f64; 4]) -> Self[src]

Creates a 2x2 matrix from a [S; 4] array stored in column major order. If your data is stored in row major you will need to transpose the returned matrix.

pub fn to_cols_array(&self) -> [f64; 4][src]

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

pub fn from_cols_array_2d(m: &[[f64; 2]; 2]) -> Self[src]

Creates a 2x2 matrix from a [[S; 2]; 2] 2D array stored in column major order. If your data is in row major order you will need to transpose the returned matrix.

pub fn to_cols_array_2d(&self) -> [[f64; 2]; 2][src]

Creates a [[S; 2]; 2] 2D array storing data in column major order. If you require data in row major order transpose the matrix first.

pub fn from_diagonal(diagonal: DVec2) -> Self[src]

Creates a 2x2 matrix with its diagonal set to diagonal and all other entries set to 0.

pub fn from_scale_angle(scale: DVec2, angle: f64) -> Self[src]

Creates a 2x2 matrix containing the combining non-uniform scale and rotation of angle (in radians).

pub fn from_angle(angle: f64) -> Self[src]

Creates a 2x2 matrix containing a rotation of angle (in radians).

pub fn from_scale(scale: DVec2) -> Self[src]

👎 Deprecated:

Use from_diagonal() instead

pub fn col(&self, index: usize) -> DVec2[src]

Returns the matrix column for the given index.

Panics

Panics if index is greater than 1.

pub fn row(&self, index: usize) -> DVec2[src]

Returns the matrix row for the given index.

Panics

Panics if index is greater than 1.

pub fn is_finite(&self) -> bool[src]

Returns true if, and only if, all elements are finite. If any element is either NaN, positive or negative infinity, this will return false.

pub fn is_nan(&self) -> bool[src]

Returns true if any elements are NaN.

pub fn transpose(&self) -> Self[src]

Returns the transpose of self.

pub fn determinant(&self) -> f64[src]

Returns the determinant of self.

pub fn inverse(&self) -> Self[src]

Returns the inverse of self.

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

pub fn mul_vec2(&self, other: DVec2) -> DVec2[src]

Transforms a 2D vector.

pub fn mul_mat2(&self, other: &Self) -> Self[src]

Multiplies two 2x2 matrices.

pub fn add_mat2(&self, other: &Self) -> Self[src]

Adds two 2x2 matrices.

pub fn sub_mat2(&self, other: &Self) -> Self[src]

Subtracts two 2x2 matrices.

pub fn mul_scalar(&self, other: f64) -> Self[src]

Multiplies a 2x2 matrix by a scalar.

pub fn abs_diff_eq(&self, other: &Self, max_abs_diff: f64) -> bool[src]

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 matrices 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 see comparing floating point numbers.

pub fn as_f32(&self) -> Mat2[src]

Trait Implementations

impl Add<DMat2> for DMat2[src]

type Output = Self

The resulting type after applying the + operator.

impl AsMut<[f64; 4]> for DMat2[src]

impl AsRef<[f64; 4]> for DMat2[src]

impl Clone for DMat2[src]

impl Copy for DMat2[src]

impl Debug for DMat2[src]

impl Default for DMat2[src]

impl Deref for DMat2[src]

type Target = Vector2x2<DVec2>

The resulting type after dereferencing.

impl DerefMut for DMat2[src]

impl Display for DMat2[src]

impl From<DMat3> for DMat2[src]

fn from(m: DMat3) -> DMat2[src]

Creates a 2x2 matrix from the top left submatrix of the given 3x3 matrix.

impl Mul<DMat2> for DMat2[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<DVec2> for DMat2[src]

type Output = DVec2

The resulting type after applying the * operator.

impl Mul<f64> for DMat2[src]

type Output = Self

The resulting type after applying the * operator.

impl PartialEq<DMat2> for DMat2[src]

impl PartialOrd<DMat2> for DMat2[src]

impl<'a> Product<&'a DMat2> for DMat2[src]

impl Sub<DMat2> for DMat2[src]

type Output = Self

The resulting type after applying the - operator.

impl<'a> Sum<&'a DMat2> for DMat2[src]

Auto Trait Implementations

impl RefUnwindSafe for DMat2

impl Send for DMat2

impl Sync for DMat2

impl Unpin for DMat2

impl UnwindSafe for DMat2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.