[][src]Struct glam::f32::Mat2

pub struct Mat2(_);

Methods

impl Mat2[src]

pub fn zero() -> Self[src]

pub fn identity() -> Self[src]

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

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

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

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

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]

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

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

pub fn mul_vec2(&self, rhs: Vec2) -> Vec2[src]

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

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

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

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

Trait Implementations

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

impl PartialEq<Mat2> for Mat2[src]

impl Copy for Mat2[src]

impl Clone for Mat2[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<Mat2> for Mat2[src]

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

impl From<[[f32; 2]; 2]> for Mat2[src]

impl From<Mat2> for [[f32; 2]; 2][src]

impl Default for Mat2[src]

impl Debug for Mat2[src]

impl Sub<Mat2> for Mat2[src]

type Output = Self

The resulting type after applying the - operator.

impl Add<Mat2> for Mat2[src]

type Output = Self

The resulting type after applying the + operator.

impl Mul<Mat2> for Mat2[src]

type Output = Self

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<&'_ Vec2> for Mat2[src]

type Output = Vec2

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<f32> for Mat2[src]

type Output = Self

The resulting type after applying the * operator.

impl Distribution<Mat2> for Standard[src]

fn sample_iter<R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
    R: Rng
[src]

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

impl AbsDiffEq<Mat2> for Mat2[src]

type Epsilon = <f32 as AbsDiffEq>::Epsilon

Used for specifying relative comparisons.

fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool[src]

The inverse of ApproxEq::abs_diff_eq.

impl RelativeEq<Mat2> for Mat2[src]

fn relative_ne(
    &self,
    other: &Rhs,
    epsilon: Self::Epsilon,
    max_relative: Self::Epsilon
) -> bool
[src]

The inverse of ApproxEq::relative_eq.

impl UlpsEq<Mat2> for Mat2[src]

fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool[src]

The inverse of ApproxEq::ulps_eq.

Auto Trait Implementations

impl Send for Mat2

impl Sync for Mat2

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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.

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

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

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