Mat23

Struct Mat23 

Source
pub struct Mat23 {
    pub x_axis: Vec2,
    pub y_axis: Vec2,
    pub z_axis: Vec2,
}
Expand description

A 2x3 column-major matrix.

Fields§

§x_axis: Vec2

The first column of the matrix.

§y_axis: Vec2

The second column of the matrix.

§z_axis: Vec2

The third column of the matrix.

Implementations§

Source§

impl Mat23

Source

pub const ZERO: Self

A 2x3 matrix with all elements set to 0.0.

Source

pub const NAN: Self

All NaNs.

Source

pub const fn from_cols(x_axis: Vec2, y_axis: Vec2, z_axis: Vec2) -> Self

Creates a 2x3 matrix from two column vectors.

Source

pub const fn from_cols_array(m: &[f32; 6]) -> Self

Creates a 2x3 matrix from an array stored in column major order.

Source

pub const fn to_cols_array(&self) -> [f32; 6]

Creates an array storing data in column major order.

Source

pub const fn from_cols_array_2d(m: &[[f32; 2]; 3]) -> Self

Creates a 2x3 matrix from a 2D array stored in column major order.

Source

pub const fn to_cols_array_2d(&self) -> [[f32; 2]; 3]

Creates a 2D array storing data in column major order.

Source

pub const fn from_cols_slice(slice: &[f32]) -> Self

Creates a 2x3 matrix from the first 6 values in slice.

§Panics

Panics if slice is less than 6 elements long.

Source

pub const fn from_rows(row0: Vec3, row1: Vec3) -> Self

Creates a 2x3 matrix from two row vectors.

Source

pub const fn from_rows_array(m: &[f32; 6]) -> Self

Creates a 2x3 matrix from an array stored in row major order.

Source

pub const fn to_rows_array(&self) -> [f32; 6]

Creates an array storing data in row major order.

Source

pub const fn from_rows_array_2d(m: &[[f32; 3]; 2]) -> Self

Creates a 2x3 matrix from a 2D array stored in row major order.

Source

pub const fn to_rows_array_2d(&self) -> [[f32; 3]; 2]

Creates a 2D array storing data in row major order.

Source

pub const fn from_rows_slice(slice: &[f32]) -> Self

Creates a 2x3 matrix from the first 6 values in slice.

§Panics

Panics if slice is less than 6 elements long.

Source

pub fn from_outer_product(a: Vec2, b: Vec3) -> Self

Creates a new 2x3 matrix from the outer product a * b^T.

Source

pub const fn col(&self, index: usize) -> Vec2

Returns the matrix column for the given index.

§Panics

Panics if index is greater than 2.

Source

pub const fn row(&self, index: usize) -> Vec3

Returns the matrix row for the given index.

§Panics

Panics if index is greater than 1.

Source

pub fn is_finite(&self) -> bool

Returns true if, and only if, all elements are finite. If any element is either NaN or positive or negative infinity, this will return false.

Source

pub fn is_nan(&self) -> bool

Returns true if any elements are NaN.

Source

pub fn transpose(&self) -> Mat32

Returns the transpose of self.

Source

pub fn abs(&self) -> Self

Takes the absolute value of each element in self.

Source

pub fn mul_vec3(&self, rhs: Vec3) -> Vec2

Transforms a 3D vector into a 2D vector.

Source

pub fn mul_mat3(&self, rhs: &Mat3) -> Self

Multiplies self by a 3x3 matrix, self * rhs.

Source

pub fn mul_symmetric_mat3(&self, rhs: &SymmetricMat3) -> Self

Multiplies self by a symmetric 3x3 matrix, self * rhs.

Source

pub fn mul_mat32(&self, rhs: &Mat32) -> Mat2

Multiplies self by a 3x2 matrix, self * rhs.

Source

pub fn mul_transposed_mat23(&self, rhs: &Self) -> Mat2

Multiplies self by another matrix that is treated as transposed, self * rhs.transpose().

Source

pub fn add_mat32(&self, rhs: &Self) -> Self

Adds two 2x2 matrices.

Source

pub fn sub_mat32(&self, rhs: &Self) -> Self

Subtracts two 2x2 matrices.

Source

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

Multiplies a 2x3 matrix by a scalar.

Source

pub fn div_scalar(&self, rhs: f32) -> Self

Divides a 2x3 matrix by a scalar.

Source§

impl Mat23

Source

pub fn as_dmat23(&self) -> DMat23

Returns the double precision version of self.

Trait Implementations§

Source§

impl Add<&&Mat23> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&Mat23> for Mat23

Source§

type Output = Mat23

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for &Mat23

Source§

type Output = Mat23

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for Mat23

Source§

type Output = Mat23

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&Mat23> for Mat23

Source§

fn add_assign(&mut self, rhs: &Self)

Performs the += operation. Read more
Source§

impl AddAssign for Mat23

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl Clone for Mat23

Source§

fn clone(&self) -> Mat23

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Mat23

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Mat23

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Display for Mat23

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Div<&Mat23> for &f32

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Mat23) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&Mat23> for f32

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Mat23) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&f32> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&f32> for Mat23

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Mat23> for &f32

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Mat23) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Mat23> for f32

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Mat23) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<f32> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<f32> for Mat23

Source§

type Output = Mat23

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f32) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<&f32> for Mat23

Source§

fn div_assign(&mut self, rhs: &f32)

Performs the /= operation. Read more
Source§

impl DivAssign<f32> for Mat23

Source§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
Source§

impl Mul<&Mat23> for &Mat32

Source§

type Output = Mat3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat23> for &SymmetricMat2

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat23> for &f32

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat23> for Mat32

Source§

type Output = Mat3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat23> for SymmetricMat2

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat23> for f32

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat3> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat3> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat32> for &Mat23

Source§

type Output = Mat2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Mat32> for Mat23

Source§

type Output = Mat2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mat32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&SymmetricMat3> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &SymmetricMat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&SymmetricMat3> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &SymmetricMat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Vec3> for &Mat23

Source§

type Output = Vec2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Vec3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&Vec3> for Mat23

Source§

type Output = Vec2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Vec3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&f32> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&f32> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for &Mat32

Source§

type Output = Mat3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for &SymmetricMat2

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for &f32

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for Mat32

Source§

type Output = Mat3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for SymmetricMat2

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat23> for f32

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat23) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat3> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat3> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat32> for &Mat23

Source§

type Output = Mat2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Mat32> for Mat23

Source§

type Output = Mat2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mat32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<SymmetricMat3> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: SymmetricMat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<SymmetricMat3> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: SymmetricMat3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Vec3> for &Mat23

Source§

type Output = Vec2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Vec3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Vec3> for Mat23

Source§

type Output = Vec2

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Vec3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<f32> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<f32> for Mat23

Source§

type Output = Mat23

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f32) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<&f32> for Mat23

Source§

fn mul_assign(&mut self, rhs: &f32)

Performs the *= operation. Read more
Source§

impl MulAssign<f32> for Mat23

Source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
Source§

impl Neg for &Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Neg for Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl PartialEq for Mat23

Source§

fn eq(&self, other: &Mat23) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Sub<&&Mat23> for &Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&Mat23> for Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for &Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for Mat23

Source§

type Output = Mat23

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<&Mat23> for Mat23

Source§

fn sub_assign(&mut self, rhs: &Self)

Performs the -= operation. Read more
Source§

impl SubAssign for Mat23

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl<'a> Sum<&'a Mat23> for Mat23

Source§

fn sum<I: Iterator<Item = &'a Mat23>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum for Mat23

Source§

fn sum<I: Iterator<Item = Mat23>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Copy for Mat23

Source§

impl StructuralPartialEq for Mat23

Auto Trait Implementations§

§

impl Freeze for Mat23

§

impl RefUnwindSafe for Mat23

§

impl Send for Mat23

§

impl Sync for Mat23

§

impl Unpin for Mat23

§

impl UnwindSafe for Mat23

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.