pub struct Pose {
pub pos: Vec3,
pub orientation: Quat,
}Expand description
A position and orientation, together.
Fields§
§pos: Vec3The position of the pose.
orientation: QuatThe rotation of the pose.
Trait Implementations§
source§impl PartialEq<Pose> for Pose
impl PartialEq<Pose> for Pose
impl Copy for Pose
impl StructuralPartialEq for Pose
Auto Trait Implementations§
impl RefUnwindSafe for Pose
impl Send for Pose
impl Sync for Pose
impl Unpin for Pose
impl UnwindSafe for Pose
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