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, O, S> Clone for Transform<P, O, S>where P: Clone, O: Clone, S: Clone,

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, O, S> Debug for Transform<P, O, S>where P: Debug, O: Debug, S: Debug,

source§

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

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

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

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() -> Transform<P, O, S>

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<Transform<P, O, S>, <__D as Deserializer<'de>>::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>) -> Mat4<T>

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>) -> Mat4<T>

Converts to this type from the input type.
source§

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

source§

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

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<Output = O> + Add<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: &'a Transform<P, O, S>, b: &'a Transform<P, O, S>, t: Factor ) -> <&'a Transform<P, O, S> as Lerp<Factor>>::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: &'a Transform<P, O, S>, b: &'a Transform<P, O, S>, t: Factor ) -> <&'a Transform<P, O, S> as Lerp<Factor>>::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<Output = O> + Add<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: Transform<P, O, S>, b: Transform<P, O, S>, t: Factor ) -> Transform<P, O, S>

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: Transform<P, O, S>, b: Transform<P, O, S>, t: Factor ) -> Transform<P, O, S>

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> PartialEq<Transform<P, O, S>> for Transform<P, O, S>where P: PartialEq<P>, O: PartialEq<O>, S: PartialEq<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 as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

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

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

source§

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

source§

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

source§

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

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§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Initialize for Twhere T: Default,

§

fn initialize(&mut self)

§

unsafe fn initialize_raw(data: *mut ())

Safety Read more
source§

impl<T, U> Into<U> for Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

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