Struct transform_gizmo::math::Transform
source · pub struct Transform {
pub scale: Vector3<f64>,
pub rotation: Quaternion<f64>,
pub translation: Vector3<f64>,
}
Fields§
§scale: Vector3<f64>
§rotation: Quaternion<f64>
§translation: Vector3<f64>
Implementations§
Trait Implementations§
source§impl PartialEq for Transform
impl PartialEq for Transform
source§impl PartialOrd for Transform
impl PartialOrd for Transform
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Transform
impl StructuralPartialEq for Transform
Auto Trait Implementations§
impl Freeze for Transform
impl RefUnwindSafe for Transform
impl Send for Transform
impl Sync for Transform
impl Unpin for Transform
impl UnwindSafe for Transform
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more