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

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

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>
Expand description

Local position.

orientation: Quaternion<O>
Expand description

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

scale: Vec3<S>
Expand description

Local scale.

Trait Implementations

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

fn clone(&self) -> Transform<P, O, S>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

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());

fn default() -> Self[src]

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

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

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

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.

fn from(xform: Transform<T, T, T>) -> Self[src]

Performs the conversion.

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.

fn from(xform: Transform<T, T, T>) -> Self[src]

Performs the conversion.

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

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

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.

fn lerp_unclamped(a: Self, b: Self, t: Factor) -> Self[src]

Returns the linear interpolation of from to to with factor unconstrained, using the supposedly fastest but less precise implementation. Read more

fn lerp_unclamped_precise(a: Self, b: Self, t: Factor) -> Self[src]

Returns the linear interpolation of from to to with factor unconstrained, using a possibly slower but more precise operation. Read more

fn lerp(from: Self, to: Self, factor: Factor) -> Self::Output where
    Factor: Clamp + Zero + One
[src]

Alias to lerp_unclamped which constrains factor to be between 0 and 1 (inclusive). Read more

fn lerp_precise(from: Self, to: Self, factor: Factor) -> Self::Output where
    Factor: Clamp + Zero + One
[src]

Alias to lerp_unclamped_precise which constrains factor to be between 0 and 1 (inclusive). Read more

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.

fn lerp_unclamped(a: Self, b: Self, t: Factor) -> Self::Output[src]

Returns the linear interpolation of from to to with factor unconstrained, using the supposedly fastest but less precise implementation. Read more

fn lerp_unclamped_precise(a: Self, b: Self, t: Factor) -> Self::Output[src]

Returns the linear interpolation of from to to with factor unconstrained, using a possibly slower but more precise operation. Read more

fn lerp(from: Self, to: Self, factor: Factor) -> Self::Output where
    Factor: Clamp + Zero + One
[src]

Alias to lerp_unclamped which constrains factor to be between 0 and 1 (inclusive). Read more

fn lerp_precise(from: Self, to: Self, factor: Factor) -> Self::Output where
    Factor: Clamp + Zero + One
[src]

Alias to lerp_unclamped_precise which constrains factor to be between 0 and 1 (inclusive). Read more

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

fn eq(&self, other: &Transform<P, O, S>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Transform<P, O, S>) -> bool[src]

This method tests for !=.

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

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

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

impl<P: Eq, O: Eq, S: Eq> Eq for Transform<P, O, S>[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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]