[][src]Struct vek::transform::repr_c::Transform

pub struct Transform<P, O, S> {
    pub position: Vec3<P>,
    pub orientation: Quaternion<O>,
    pub scale: Vec3<S>,
}

A convenient position + orientation + scale container, backed by two Vec3 and a Quaternion.

It can be easily interpolated and converted to a Mat4 of any layout.

let (p, rz, s) = (Vec3::unit_x(), 3.0_f32, 5.0_f32);
let a = Mat4::scaling_3d(s).rotated_z(rz).translated_3d(p);
let b = Mat4::from(Transform {
    position: p, 
    orientation: Quaternion::rotation_z(rz),
    scale: Vec3::broadcast(s),
});
assert_relative_eq!(a, b);

Fields

position: Vec3<P>

Local position.

orientation: Quaternion<O>

Local orientation; It is not named rotation because rotation denotes an operation, but not a current state.

scale: Vec3<S>

Local scale.

Trait Implementations

impl<P: Clone, O: Clone, S: Clone> Clone for Transform<P, O, S>[src]

impl<P: Copy, O: Copy, S: Copy> Copy for Transform<P, O, S>[src]

impl<P: Debug, O: Debug, S: Debug> Debug for Transform<P, O, S>[src]

impl<P: Zero, O: Zero + One, S: One> Default for Transform<P, O, S>[src]

The default Transform has a zero position, identity orientation and unit scale.

let a = Transform {
    position: Vec3::<f32>::zero(),
    orientation: Quaternion::<f32>::identity(),
    scale: Vec3::<f32>::one(),
};
assert_eq!(a, Transform::default());

impl<'de, P, O, S> Deserialize<'de> for Transform<P, O, S> where
    P: Deserialize<'de>,
    O: Deserialize<'de>,
    S: Deserialize<'de>, 
[src]

impl<P: Eq, O: Eq, S: Eq> Eq for Transform<P, O, S>[src]

impl<T> From<Transform<T, T, T>> for Mat4<T> where
    T: Real + MulAdd<T, T, Output = T>, 
[src]

A Mat4 can be obtained from a Transform, by rotating, then scaling, then translating.

impl<T> From<Transform<T, T, T>> for Mat4<T> where
    T: Real + MulAdd<T, T, Output = T>, 
[src]

A Mat4 can be obtained from a Transform, by rotating, then scaling, then translating.

impl<P: Hash, O: Hash, S: Hash> Hash for Transform<P, O, S>[src]

impl<P, O, S, Factor> Lerp<Factor> for Transform<P, O, S> where
    Factor: Copy + Into<O>,
    P: Lerp<Factor, Output = P>,
    S: Lerp<Factor, Output = S>,
    O: Lerp<O, Output = O> + Real + Add<Output = O>, 
[src]

LERP on a Transform is defined as LERP-ing between the positions and scales, and performing SLERP between the orientations.

type Output = Self

The resulting type after performing the LERP operation.

impl<'a, P, O, S, Factor> Lerp<Factor> for &'a Transform<P, O, S> where
    Factor: Copy + Into<O>,
    &'a P: Lerp<Factor, Output = P>,
    &'a S: Lerp<Factor, Output = S>,
    O: Lerp<O, Output = O> + Real + Add<Output = O>, 
[src]

LERP on a Transform is defined as LERP-ing between the positions and scales, and performing SLERP between the orientations.

type Output = Transform<P, O, S>

The resulting type after performing the LERP operation.

impl<P: PartialEq, O: PartialEq, S: PartialEq> PartialEq<Transform<P, O, S>> for Transform<P, O, S>[src]

impl<P, O, S> Serialize for Transform<P, O, S> where
    P: Serialize,
    O: Serialize,
    S: Serialize
[src]

impl<P, O, S> StructuralEq for Transform<P, O, S>[src]

impl<P, O, S> StructuralPartialEq for Transform<P, O, S>[src]

Auto Trait Implementations

impl<P, O, S> RefUnwindSafe for Transform<P, O, S> where
    O: RefUnwindSafe,
    P: RefUnwindSafe,
    S: RefUnwindSafe

impl<P, O, S> Send for Transform<P, O, S> where
    O: Send,
    P: Send,
    S: Send

impl<P, O, S> Sync for Transform<P, O, S> where
    O: Sync,
    P: Sync,
    S: Sync

impl<P, O, S> Unpin for Transform<P, O, S> where
    O: Unpin,
    P: Unpin,
    S: Unpin

impl<P, O, S> UnwindSafe for Transform<P, O, S> where
    O: UnwindSafe,
    P: UnwindSafe,
    S: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.