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

pub struct Mat4 { /* fields omitted */ }

A 4x4 column major matrix.

This type is 16 byte aligned.

Methods

impl Mat4[src]

pub fn zero() -> Self[src]

Creates a new Mat4 with all elements set to 0.0.

pub fn identity() -> Self[src]

Creates a new Mat4 identity matrix.

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

Deprecated since 0.7.2:

please use Mat4::from_cols instead

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

Creates a new Mat4 from four column vectors.

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

Creates a new Mat4 from a [f32; 16] stored in column major order. If your data is stored in row major you will need to transpose the resulting Mat4.

pub fn to_cols_array(&self) -> [f32; 16][src]

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

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

Creates a new Mat4 from a [[f32; 4]; 4] stored in column major order. If your data is in row major order you will need to transpose the resulting Mat4.

pub fn to_cols_array_2d(&self) -> [[f32; 4]; 4][src]

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

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: f32) -> Self[src]

Creates a new Mat4 containing a rotation around a normalized rotation axis of angle (in radians).

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

Creates a new Mat4 containing a rotation around the given euler angles (in radians).

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

Creates a new Mat4 containing a rotation around the x axis of angle (in radians).

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

Creates a new Mat4 containing a rotation around the y axis of angle (in radians).

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

Creates a new Mat4 containing a rotation around the z axis of angle (in radians).

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_rh(
    fov_y_radians: f32,
    aspect_ratio: f32,
    z_near: f32,
    z_far: f32
) -> Mat4
[src]

Builds a right-handed perspective projection matrix with [-1,1] depth range. This is the equivalent of the common perspective function gluPerspective in OpenGL. See https://www.khronos.org/opengl/wiki/GluPerspective_code

pub fn perspective_infinite_rh(
    fov_y_radians: f32,
    aspect_ratio: f32,
    z_near: f32
) -> Mat4
[src]

Build infinite right-handed perspective projection matrix with [0,1] depth range.

pub fn perspective_infinite_reverse_rh(
    fov_y_radians: f32,
    aspect_ratio: f32,
    z_near: f32
) -> Mat4
[src]

Build infinite reverse right-handed perspective projection matrix with [0,1] depth range.

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

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

Multiplies two 4x4 matrices.

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

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

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

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

pub fn transform_vector3(&self, other: Vec3) -> Vec3[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 Mat4'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 AsRef<[f32; 16]> for Mat4[src]

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

impl Clone for Mat4[src]

impl Copy for Mat4[src]

impl Default for Mat4[src]

impl PartialEq<Mat4> for Mat4[src]

impl PartialOrd<Mat4> for Mat4[src]

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

Auto Trait Implementations

impl Send for Mat4

impl Sync for Mat4

impl Unpin for Mat4

impl UnwindSafe for Mat4

impl RefUnwindSafe for Mat4

Blanket Implementations

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

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> 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.

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

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

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