#[repr(C)]pub struct Matrix2<S> {
pub x: Vector2<S>,
pub y: Vector2<S>,
}Expand description
A 2 x 2, column major matrix
This type is marked as #[repr(C)].
Fields§
§x: Vector2<S>The first column of the matrix.
y: Vector2<S>The second column of the matrix.
Implementations§
source§impl<S> Matrix2<S>where
S: BaseFloat,
impl<S> Matrix2<S>where S: BaseFloat,
sourcepub fn look_at(dir: Vector2<S>, up: Vector2<S>) -> Matrix2<S>
pub fn look_at(dir: Vector2<S>, up: Vector2<S>) -> Matrix2<S>
Create a transformation matrix that will cause unit_x() to point at
dir. unit_y() will be perpendicular to dir, and the closest to up.
sourcepub fn look_at_stable(dir: Vector2<S>, flip: bool) -> Matrix2<S>
pub fn look_at_stable(dir: Vector2<S>, flip: bool) -> Matrix2<S>
Crate a transformation that will cause unit_x() to point at
dir. This is similar to look_at, but does not take an up vector.
This will not cause unit_y() to flip when dir crosses over the up vector.
pub fn from_angle<A>(theta: A) -> Matrix2<S>where A: Into<Rad<S>>,
Trait Implementations§
source§impl<S> AbsDiffEq for Matrix2<S>where
S: BaseFloat,
impl<S> AbsDiffEq for Matrix2<S>where S: BaseFloat,
source§fn default_epsilon() -> <S as AbsDiffEq>::Epsilon
fn default_epsilon() -> <S as AbsDiffEq>::Epsilon
The default tolerance to use when testing values that are close together. Read more
source§fn abs_diff_eq(
&self,
other: &Matrix2<S>,
epsilon: <S as AbsDiffEq>::Epsilon
) -> bool
fn abs_diff_eq( &self, other: &Matrix2<S>, epsilon: <S as AbsDiffEq>::Epsilon ) -> bool
A test for equality that uses the absolute difference to compute the approximate
equality of two numbers.
§fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
The inverse of [
AbsDiffEq::abs_diff_eq].source§impl<S> AddAssign for Matrix2<S>where
S: BaseFloat + AddAssign,
impl<S> AddAssign for Matrix2<S>where S: BaseFloat + AddAssign,
source§fn add_assign(&mut self, other: Matrix2<S>)
fn add_assign(&mut self, other: Matrix2<S>)
Performs the
+= operation. Read moresource§impl<S> DivAssign<S> for Matrix2<S>where
S: BaseFloat + DivAssign,
impl<S> DivAssign<S> for Matrix2<S>where S: BaseFloat + DivAssign,
source§fn div_assign(&mut self, scalar: S)
fn div_assign(&mut self, scalar: S)
Performs the
/= operation. Read moresource§impl<S> Matrix for Matrix2<S>where
S: BaseFloat,
impl<S> Matrix for Matrix2<S>where S: BaseFloat,
source§impl<S> MulAssign<S> for Matrix2<S>where
S: BaseFloat + MulAssign,
impl<S> MulAssign<S> for Matrix2<S>where S: BaseFloat + MulAssign,
source§fn mul_assign(&mut self, scalar: S)
fn mul_assign(&mut self, scalar: S)
Performs the
*= operation. Read moresource§impl<S> PartialEq for Matrix2<S>where
S: PartialEq,
impl<S> PartialEq for Matrix2<S>where S: PartialEq,
source§impl<S> RelativeEq for Matrix2<S>where
S: BaseFloat,
impl<S> RelativeEq for Matrix2<S>where S: BaseFloat,
source§fn default_max_relative() -> <S as AbsDiffEq>::Epsilon
fn default_max_relative() -> <S as AbsDiffEq>::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
source§fn relative_eq(
&self,
other: &Matrix2<S>,
epsilon: <S as AbsDiffEq>::Epsilon,
max_relative: <S as AbsDiffEq>::Epsilon
) -> bool
fn relative_eq( &self, other: &Matrix2<S>, epsilon: <S as AbsDiffEq>::Epsilon, max_relative: <S as AbsDiffEq>::Epsilon ) -> bool
A test for equality that uses a relative comparison if the values are far apart.
§fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon ) -> bool
The inverse of [
RelativeEq::relative_eq].source§impl<S> RemAssign<S> for Matrix2<S>where
S: BaseFloat + RemAssign,
impl<S> RemAssign<S> for Matrix2<S>where S: BaseFloat + RemAssign,
source§fn rem_assign(&mut self, scalar: S)
fn rem_assign(&mut self, scalar: S)
Performs the
%= operation. Read moresource§impl<S> SquareMatrix for Matrix2<S>where
S: BaseFloat,
impl<S> SquareMatrix for Matrix2<S>where S: BaseFloat,
source§fn from_value(value: S) -> Matrix2<S>
fn from_value(value: S) -> Matrix2<S>
Create a new diagonal matrix using the supplied value.
source§fn from_diagonal(value: Vector2<S>) -> Matrix2<S>
fn from_diagonal(value: Vector2<S>) -> Matrix2<S>
Create a matrix from a non-uniform scale
source§fn transpose_self(&mut self)
fn transpose_self(&mut self)
Transpose this matrix in-place.
source§fn determinant(&self) -> S
fn determinant(&self) -> S
Take the determinant of this matrix.
source§fn invert(&self) -> Option<Matrix2<S>>
fn invert(&self) -> Option<Matrix2<S>>
Invert this matrix, returning a new matrix.
m.mul_m(m.invert()) is
the identity matrix. Returns None if this matrix is not invertible
(has a determinant of zero).source§fn is_diagonal(&self) -> bool
fn is_diagonal(&self) -> bool
Test if this is a diagonal matrix. That is, every element outside of
the diagonal is 0.
source§fn is_symmetric(&self) -> bool
fn is_symmetric(&self) -> bool
Test if this matrix is symmetric. That is, it is equal to its
transpose.
source§fn identity() -> Self
fn identity() -> Self
The identity matrix. Multiplying this matrix with another should have
no effect. Read more
source§fn trace(&self) -> Self::Scalar
fn trace(&self) -> Self::Scalar
Return the trace of this matrix. That is, the sum of the diagonal.
source§fn is_identity(&self) -> boolwhere
Self: UlpsEq,
fn is_identity(&self) -> boolwhere Self: UlpsEq,
Test if this matrix is the identity matrix. That is, it is diagonal
and every element in the diagonal is one.
source§impl<S> SubAssign for Matrix2<S>where
S: BaseFloat + SubAssign,
impl<S> SubAssign for Matrix2<S>where S: BaseFloat + SubAssign,
source§fn sub_assign(&mut self, other: Matrix2<S>)
fn sub_assign(&mut self, other: Matrix2<S>)
Performs the
-= operation. Read moresource§impl<S> UlpsEq for Matrix2<S>where
S: BaseFloat,
impl<S> UlpsEq for Matrix2<S>where S: BaseFloat,
source§fn default_max_ulps() -> u32
fn default_max_ulps() -> u32
The default ULPs to tolerate when testing values that are far-apart. Read more
source§impl<S> VectorSpace for Matrix2<S>where
S: BaseFloat,
impl<S> VectorSpace for Matrix2<S>where S: BaseFloat,
impl<S> Copy for Matrix2<S>where S: Copy,
impl<S> StructuralPartialEq for Matrix2<S>
impl<T: UniformDataType + PrimitiveDataType> UniformDataType for Matrix2<T>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Matrix2<S>where S: RefUnwindSafe,
impl<S> Send for Matrix2<S>where S: Send,
impl<S> Sync for Matrix2<S>where S: Sync,
impl<S> Unpin for Matrix2<S>where S: Unpin,
impl<S> UnwindSafe for Matrix2<S>where S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more