[][src]Struct geomath::matrix::Matrix3

pub struct Matrix3 {
    pub xx: f64,
    pub xy: f64,
    pub xz: f64,
    pub yx: f64,
    pub yy: f64,
    pub yz: f64,
    pub zx: f64,
    pub zy: f64,
    pub zz: f64,
}

3x3 matrix

Fields

xx: f64xy: f64xz: f64yx: f64yy: f64yz: f64zx: f64zy: f64zz: f64

Methods

impl Matrix3[src]

pub const fn new(
    xx: f64,
    xy: f64,
    xz: f64,
    yx: f64,
    yy: f64,
    yz: f64,
    zx: f64,
    zy: f64,
    zz: f64
) -> Self
[src]

Trait Implementations

impl Add<Matrix3> for Matrix3[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Matrix3> for Matrix3[src]

impl Algebra<Matrix3> for Matrix3[src]

impl BitOr<Matrix3> for Matrix3[src]

type Output = f64

The resulting type after applying the | operator.

impl Clone for Matrix3[src]

impl Copy for Matrix3[src]

impl Debug for Matrix3[src]

impl Div<f64> for Matrix3[src]

type Output = Self

The resulting type after applying the / operator.

impl DivAssign<f64> for Matrix3[src]

impl From<f64> for Matrix3[src]

impl Initializer for Matrix3[src]

impl Interpolation for Matrix3[src]

impl Metric for Matrix3[src]

impl Mul<Matrix3> for Matrix3[src]

type Output = Matrix3

The resulting type after applying the * operator.

impl Mul<Vector2> for Matrix3[src]

type Output = Vector2

The resulting type after applying the * operator.

impl Mul<Vector3> for Matrix3[src]

type Output = Vector3

The resulting type after applying the * operator.

impl Mul<f64> for Matrix3[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<Matrix3> for Vector3[src]

impl MulAssign<Matrix3> for Vector2[src]

impl MulAssign<Matrix3> for Matrix3[src]

impl MulAssign<f64> for Matrix3[src]

impl Neg for Matrix3[src]

type Output = Self

The resulting type after applying the - operator.

impl Not for Matrix3[src]

type Output = f64

The resulting type after applying the ! operator.

impl PartialEq<Matrix3> for Matrix3[src]

impl Rem<Matrix3> for Matrix3[src]

type Output = f64

The resulting type after applying the % operator.

impl Reset<Matrix3> for Matrix3[src]

impl Rigid<Matrix2, Vector2> for Matrix3[src]

impl Rigid<Matrix3, Vector3> for Matrix4[src]

impl Rotation3 for Matrix3[src]

impl Rows<[Vector3; 3]> for Matrix3[src]

impl Similarity<Matrix2, Vector2> for Matrix3[src]

impl Similarity<Matrix3, Vector3> for Matrix4[src]

impl Sub<Matrix3> for Matrix3[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Matrix3> for Matrix3[src]

impl Translation<Vector2> for Matrix3[src]

Auto Trait Implementations

impl RefUnwindSafe for Matrix3

impl Send for Matrix3

impl Sync for Matrix3

impl Unpin for Matrix3

impl UnwindSafe for Matrix3

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.