Struct ultraviolet::mat::Mat3

source ·
#[repr(C)]
pub struct Mat3 { pub cols: [Vec3; 3], }
Expand description

A 3x3 square matrix.

Useful for performing linear transformations (rotation, scaling) on 3d vectors, or for performing arbitrary transformations (linear + translation, projection, etc) on homogeneous 2d vectors

Fields§

§cols: [Vec3; 3]

Implementations§

source§

impl Mat3

source

pub const fn new(col1: Vec3, col2: Vec3, col3: Vec3) -> Self

source

pub fn from_translation(trans: Vec2) -> Self

Assumes homogeneous 2d coordinates.

source

pub fn from_scale_homogeneous(scale: f32) -> Self

Assumes homogeneous 2d coordinates.

source

pub fn from_nonuniform_scale_homogeneous(scale: Vec2) -> Self

Assumes homogeneous 2d coordinates.

source

pub fn from_rotation_homogeneous(angle: f32) -> Self

Builds a homogeneous 2d rotation matrix (in the xy plane) from a given angle in radians.

source

pub fn from_scale(scale: f32) -> Self

source

pub fn from_nonuniform_scale(scale: Vec3) -> Self

source

pub fn identity() -> Self

source

pub fn from_euler_angles(roll: f32, pitch: f32, yaw: f32) -> Self

Angles are applied in the order roll -> pitch -> yaw.

  • Yaw is rotation inside the xz plane (“around the y axis”)
  • Pitch is rotation inside the yz plane (“around the x axis”)
  • Roll is rotation inside the xy plane (“around the z axis”)
source

pub fn from_rotation_x(angle: f32) -> Self

Create a new rotation matrix from a rotation “around the x axis”. This is here as a convenience function for users coming from other libraries; it is more proper to think of this as a rotation in the yz plane.

source

pub fn from_rotation_y(angle: f32) -> Self

Create a new rotation matrix from a rotation “around the y axis”. This is here as a convenience function for users coming from other libraries; it is more proper to think of this as a rotation in the xz plane.

source

pub fn from_rotation_z(angle: f32) -> Self

Create a new rotation matrix from a rotation “around the z axis”. This is here as a convenience function for users coming from other libraries; it is more proper to think of this as a rotation in the xy plane.

source

pub fn from_rotation_around(axis: Vec3, angle: f32) -> Self

Create a new rotation matrix from a rotation around the given axis. This is here as a convenience function for users coming from other libraries.

source

pub fn from_angle_plane(angle: f32, plane: Bivec3) -> Self

Construct a rotation matrix given a bivector which defines a plane and rotation orientation, and a rotation angle.

plane must be normalized!

This is the equivalent of an axis-angle rotation.

source

pub fn into_homogeneous(self) -> Mat4

source

pub fn determinant(&self) -> f32

source

pub fn adjugate(&self) -> Self

The adjugate of this matrix, i.e. the transpose of the cofactor matrix.

This is equivalent to the inverse but without dividing by the determinant of the matrix, which can be useful in some contexts for better performance.

One such case is when this matrix is interpreted as a a homogeneous transformation matrix, in which case uniform scaling will not affect the resulting projected 3d version of transformed points or vectors.

source

pub fn inverse(&mut self)

If this matrix is not currently invertable, this function will return an invalid inverse. This status is not checked by the library.

source

pub fn inversed(&self) -> Self

If this matrix is not currently invertable, this function will return an invalid inverse. This status is not checked by the library.

source

pub fn transpose(&mut self)

source

pub fn transposed(&self) -> Self

source

pub fn transform_vec2(&self, vec: Vec2) -> Vec2

Transform a Vec2 by self, interpreting it as a vector.

source

pub fn transform_point2(&self, point: Vec2) -> Vec2

Transform a Vec2 by self, interpreting it as a point.

source

pub fn layout() -> Layout

Get the core::alloc::Layout of Self

source

pub fn as_array(&self) -> &[f32; 9]

Interpret self as a statically sized array of the base numeric type.

source

pub fn as_mut_array(&mut self) -> &mut [f32; 9]

Interpret self as a statically sized array of the base numeric type.

source

pub fn as_component_array(&self) -> &[Vec3; 3]

Interpret self as a statically sized array of the component (column) vectors.

source

pub fn as_mut_component_array(&mut self) -> &mut [Vec3; 3]

Interpret self as a statically sized array of the component (column) vectors.

source

pub fn as_slice(&self) -> &[f32]

Interpret self as a slice of the base numeric type.

source

pub fn as_component_slice(&self) -> &[Vec3]

Interpret self as a slice of the component (column) vectors.

source

pub fn as_byte_slice(&self) -> &[u8]

Interpret self as a slice of bytes.

source

pub fn as_mut_slice(&mut self) -> &mut [f32]

Interpret self as a slice of the base numeric type.

source

pub fn as_mut_component_slice(&mut self) -> &mut [Vec3]

Interpret self as a slice of the component (column) vectors.

source

pub fn as_mut_byte_slice(&mut self) -> &mut [u8]

Interpret self as a slice of bytes.

source

pub const fn as_ptr(&self) -> *const f32

Returns a constant unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.

Safety

It is up to the caller to correctly use this pointer and its bounds.

source

pub fn as_mut_ptr(&mut self) -> *mut f32

Returns a mutable unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.

Safety

It is up to the caller to correctly use this pointer and its bounds.

source§

impl Mat3

source

pub fn into_rotor3(self) -> Rotor3

If self is a rotation matrix, return a Rotor3 representing the same rotation.

If self is not a rotation matrix, the returned value is a Rotor3 with undefied properties. The fact that self is a rotation matrix is not checked by the library.

Trait Implementations§

source§

impl Add<Mat3> for Mat3

§

type Output = Mat3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<Mat3> for Mat3

source§

fn add_assign(&mut self, rhs: Mat3)

Performs the += operation. Read more
source§

impl Clone for Mat3

source§

fn clone(&self) -> Mat3

Returns a copy 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 Mat3

source§

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

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

impl Default for Mat3

source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for Mat3

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<&[f32; 9]> for Mat3

source§

fn from(comps: &[f32; 9]) -> Self

Converts to this type from the input type.
source§

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

source§

fn from(comps: [[f32; 3]; 3]) -> Self

Converts to this type from the input type.
source§

impl From<[f32; 9]> for Mat3

source§

fn from(comps: [f32; 9]) -> Self

Converts to this type from the input type.
source§

impl From<ColumnMatrix3<f32>> for Mat3

source§

fn from(v: ColumnMatrix3<f32>) -> Self

Converts to this type from the input type.
source§

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

source§

fn from(mat3: Mat3) -> Self

Converts to this type from the input type.
source§

impl From<Mat3> for ColumnMatrix3<f32>

source§

fn from(v: Mat3) -> Self

Converts to this type from the input type.
source§

impl From<Rotor3> for Mat3

source§

fn from(rotor: Rotor3) -> Mat3

Converts to this type from the input type.
source§

impl Index<usize> for Mat3

§

type Output = Vec3

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for Mat3

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul<Mat3> for Mat3

§

type Output = Mat3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<Mat3> for f32

§

type Output = Mat3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<Vec3> for Mat3

§

type Output = Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<f32> for Mat3

§

type Output = Mat3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f32) -> Mat3

Performs the * operation. Read more
source§

impl PartialEq<Mat3> for Mat3

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Mat3

source§

fn serialize<T>(&self, serializer: T) -> Result<T::Ok, T::Error>where T: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Zeroable for Mat3

source§

fn zeroed() -> Self

source§

impl Copy for Mat3

source§

impl Pod for Mat3

source§

impl StructuralPartialEq for Mat3

Auto Trait Implementations§

§

impl RefUnwindSafe for Mat3

§

impl Send for Mat3

§

impl Sync for Mat3

§

impl Unpin for Mat3

§

impl UnwindSafe for Mat3

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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 Twhere T: Clone,

§

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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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

impl<T> AnyBitPattern for Twhere T: Pod,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T> NoUninit for Twhere T: Pod,