[][src]Struct glam::f32::Mat4

pub struct Mat4 { /* fields omitted */ }

Methods

impl Mat4[src]

pub fn zero() -> Self[src]

pub fn identity() -> Self[src]

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

pub fn from_scale_rotation_translation(
    scale: Vec3,
    rotation: Quat,
    translation: Vec3
) -> Self
[src]

pub fn from_rotation_translation(rotation: Quat, translation: Vec3) -> Self[src]

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

pub fn from_translation(translation: Vec3) -> 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: Vec4)[src]

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

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

pub fn set_w_axis(&mut self, w: Vec4)[src]

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

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

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

pub fn w_axis(&self) -> Vec4[src]

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

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

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

pub fn look_at_lh(eye: Vec3, center: Vec3, up: Vec3) -> Self[src]

pub fn look_at_rh(eye: Vec3, center: Vec3, up: Vec3) -> Self[src]

pub fn perspective_glu(fovy: Angle, aspect: f32, nearz: f32, farz: f32) -> Mat4[src]

Returns the equivalent of the common pespective function gluPerspective. See https://www.khronos.org/opengl/wiki/GluPerspective_code

pub fn mul_vec4(&self, rhs: Vec4) -> Vec4[src]

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

Multiplies two 4x4 matrices.

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

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

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

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

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

Trait Implementations

impl AsMut<[f32; 16]> for Mat4[src]

impl PartialEq<Mat4> for Mat4[src]

impl Copy for Mat4[src]

impl Clone for Mat4[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<Mat4> for Mat4[src]

impl AsRef<[f32; 16]> for Mat4[src]

impl From<[[f32; 4]; 4]> for Mat4[src]

impl From<Mat4> for [[f32; 4]; 4][src]

impl Default for Mat4[src]

impl Debug for Mat4[src]

impl Sub<Mat4> for Mat4[src]

type Output = Self

The resulting type after applying the - operator.

impl Add<Mat4> for Mat4[src]

type Output = Self

The resulting type after applying the + operator.

impl Mul<Mat4> for Mat4[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Vec4> for Mat4[src]

type Output = Vec4

The resulting type after applying the * operator.

impl Mul<Mat4> for f32[src]

type Output = Mat4

The resulting type after applying the * operator.

impl Mul<f32> for Mat4[src]

type Output = Self

The resulting type after applying the * operator.

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

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

The inverse of ApproxEq::relative_eq.

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

impl Sync for Mat4

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]