[][src]Struct directx_math::XMMatrix

#[repr(transparent)]pub struct XMMatrix(pub XMMATRIX);

Unit struct for XMMATRIX operator overloads.

Implementations

impl XMMatrix[src]

pub fn set(
    m00: f32,
    m01: f32,
    m02: f32,
    m03: f32,
    m10: f32,
    m11: f32,
    m12: f32,
    m13: f32,
    m20: f32,
    m21: f32,
    m22: f32,
    m23: f32,
    m30: f32,
    m31: f32,
    m32: f32,
    m33: f32
) -> XMMatrix
[src]

Trait Implementations

impl Add<XMMatrix> for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the + operator.

impl AddAssign<XMMatrix> for XMMatrix[src]

impl Clone for XMMatrix[src]

impl Copy for XMMatrix[src]

impl Debug for XMMatrix[src]

impl Deref for XMMatrix[src]

type Target = XMMATRIX

The resulting type after dereferencing.

impl DerefMut for XMMatrix[src]

impl Div<f32> for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the / operator.

impl DivAssign<f32> for XMMatrix[src]

impl<'_> From<&'_ [[f32; 4]; 4]> for XMMatrix[src]

impl<'_> From<&'_ [f32; 16]> for XMMatrix[src]

impl Into<[[f32; 4]; 4]> for XMMatrix[src]

impl Into<[f32; 16]> for XMMatrix[src]

impl Mul<XMMatrix> for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the * operator.

impl Mul<XMMatrix> for f32[src]

type Output = XMMatrix

The resulting type after applying the * operator.

impl Mul<f32> for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the * operator.

impl MulAssign<XMMatrix> for XMMatrix[src]

impl MulAssign<f32> for XMMatrix[src]

impl Neg for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the - operator.

impl PartialEq<XMMatrix> for XMMatrix[src]

impl Sub<XMMatrix> for XMMatrix[src]

type Output = XMMatrix

The resulting type after applying the - operator.

impl SubAssign<XMMatrix> for XMMatrix[src]

Auto Trait Implementations

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.