[][src]Struct glam::Mat2

#[repr(C)]
pub struct Mat2(_);

A 2x2 column major matrix.

Methods

impl Mat2[src]

pub fn zero() -> Self[src]

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

pub fn identity() -> Self[src]

Creates a 2x2 identity matrix.

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

Creates a 2x2 matrix from four column vectors.

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

Creates a 2x2 matrix from a [f32; 4] 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) -> [f32; 4][src]

Creates a [f32; 4] 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: &[[f32; 2]; 2]) -> Self[src]

Creates a 2x2 matrix from a [[f32; 2]; 2] 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) -> [[f32; 2]; 2][src]

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

pub fn from_scale_angle(scale: Vec2, angle: f32) -> Self[src]

Creates a 2x2 matrix containing the given scale and rotation of angle (in radians).

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

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

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

Creates a 2x2 matrix containing the given non-uniform scale.

pub fn set_x_axis(&mut self, x: Vec2)[src]

pub fn set_y_axis(&mut self, y: Vec2)[src]

pub fn x_axis(&self) -> Vec2[src]

pub fn y_axis(&self) -> Vec2[src]

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

Returns the transpose of self.

pub fn determinant(&self) -> f32[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: Vec2) -> Vec2[src]

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

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

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

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

pub fn abs_diff_eq(&self, other: Self, max_abs_diff: f32) -> 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 Mat2'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

impl Add<Mat2> for Mat2[src]

type Output = Self

The resulting type after applying the + operator.

impl AsMut<[f32; 4]> for Mat2[src]

impl AsRef<[f32; 4]> for Mat2[src]

impl Clone for Mat2[src]

impl Copy for Mat2[src]

impl Debug for Mat2[src]

impl Default for Mat2[src]

impl Display for Mat2[src]

impl Mul<Mat2> for Mat2[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Mat2> for f32[src]

type Output = Mat2

The resulting type after applying the * operator.

impl Mul<Vec2> for Mat2[src]

type Output = Vec2

The resulting type after applying the * operator.

impl Mul<f32> for Mat2[src]

type Output = Self

The resulting type after applying the * operator.

impl PartialEq<Mat2> for Mat2[src]

impl PartialOrd<Mat2> for Mat2[src]

impl StructuralPartialEq for Mat2[src]

impl Sub<Mat2> for Mat2[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for Mat2

impl Send for Mat2

impl Sync for Mat2

impl Unpin for Mat2

impl UnwindSafe for Mat2

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.