[][src]Struct glam::f32::Mat3

pub struct Mat3 { /* fields omitted */ }

Methods

impl Mat3[src]

pub fn zero() -> Self[src]

pub fn identity() -> Self[src]

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

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

Create a 3x3 matrix that can scale, rotate and translate a 2D vector.

pub fn from_quat(rotation: Quat) -> Self[src]

pub fn from_axis_angle(axis: Vec3, angle: Angle) -> Self[src]

pub fn from_rotation_ypr(yaw: Angle, pitch: Angle, roll: Angle) -> Self[src]

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

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

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

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

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

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

pub fn set_z_axis(&mut self, z: Vec3)[src]

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

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

pub fn z_axis(&self) -> Vec3[src]

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

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

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

pub fn mul_vec3(&self, rhs: Vec3) -> Vec3[src]

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

Multiplies two 3x3 matrices.

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

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

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

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

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

Trait Implementations

impl PartialOrd<Mat3> for Mat3[src]

impl Default for Mat3[src]

impl Clone for Mat3[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Mat3> for Mat3[src]

impl From<[[f32; 3]; 3]> for Mat3[src]

impl From<Mat3> for [[f32; 3]; 3][src]

impl Copy for Mat3[src]

impl Debug for Mat3[src]

impl Add<Mat3> for Mat3[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<Mat3> for Mat3[src]

type Output = Self

The resulting type after applying the - operator.

impl Mul<Mat3> for Mat3[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Vec3> for Mat3[src]

type Output = Vec3

The resulting type after applying the * operator.

impl<'_> Mul<&'_ Vec3> for Mat3[src]

type Output = Vec3

The resulting type after applying the * operator.

impl Mul<Mat3> for f32[src]

type Output = Mat3

The resulting type after applying the * operator.

impl Mul<f32> for Mat3[src]

type Output = Self

The resulting type after applying the * operator.

impl Distribution<Mat3> 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<Mat3> for Mat3[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<Mat3> for Mat3[src]

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

The inverse of ApproxEq::relative_eq.

impl UlpsEq<Mat3> for Mat3[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 Mat3

impl Sync for Mat3

Blanket Implementations

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

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, 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]