Struct vek::transform::repr_simd::Transform

source ·
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>

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§

source§

impl<P: Clone, O: Clone, S: Clone> Clone for Transform<P, O, S>

source§

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

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<P: Debug, O: Debug, S: Debug> Debug for Transform<P, O, S>

source§

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

Formats the value using the given formatter. Read more
source§

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

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

fn default() -> Self

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

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

source§

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

Deserialize this value from the given Serde deserializer. Read more
source§

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

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

source§

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

Converts to this type from the input type.
source§

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

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

source§

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

Converts to this type from the input type.
source§

impl<P: Hash, O: Hash, S: Hash> Hash for Transform<P, O, S>

source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

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

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>,

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.
source§

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

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

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

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

fn lerp_unclamped_inclusive_range( range: RangeInclusive<Self>, factor: Factor ) -> Self::Output

Version of lerp_unclamped() that used a single RangeInclusive parameter instead of two values.
source§

fn lerp_unclamped_precise_inclusive_range( range: RangeInclusive<Self>, factor: Factor ) -> Self::Output

Version of lerp_unclamped_precise() that used a single RangeInclusive parameter instead of two values.
source§

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>,

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.
source§

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

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

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

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

fn lerp_unclamped_inclusive_range( range: RangeInclusive<Self>, factor: Factor ) -> Self::Output

Version of lerp_unclamped() that used a single RangeInclusive parameter instead of two values.
source§

fn lerp_unclamped_precise_inclusive_range( range: RangeInclusive<Self>, factor: Factor ) -> Self::Output

Version of lerp_unclamped_precise() that used a single RangeInclusive parameter instead of two values.
source§

impl<P: PartialEq, O: PartialEq, S: PartialEq> PartialEq for Transform<P, O, S>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

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

source§

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

Serialize this value into the given Serde serializer. Read more
source§

impl<P: Copy, O: Copy, S: Copy> Copy for Transform<P, O, S>

source§

impl<P: Eq, O: Eq, S: Eq> Eq for Transform<P, O, S>

source§

impl<P, O, S> StructuralPartialEq for Transform<P, O, S>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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