pub struct ATT_POS_MOCAP_DATA {
pub time_usec: u64,
pub q: [f32; 4],
pub x: f32,
pub y: f32,
pub z: f32,
pub covariance: [f32; 21],
}Available on crate feature
ualberta only.Expand description
Motion capture attitude and position.
ID: 138
Fields§
§time_usec: u64Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number.
q: [f32; 4]Attitude quaternion (w, x, y, z order, zero-rotation is 1, 0, 0, 0)
x: f32X position (NED)
y: f32Y position (NED)
z: f32Z position (NED)
covariance: [f32; 21]Row-major representation of a pose 6x6 cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array.
Implementations§
Source§impl ATT_POS_MOCAP_DATA
impl ATT_POS_MOCAP_DATA
pub const ENCODED_LEN: usize = 120usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for ATT_POS_MOCAP_DATA
impl Clone for ATT_POS_MOCAP_DATA
Source§fn clone(&self) -> ATT_POS_MOCAP_DATA
fn clone(&self) -> ATT_POS_MOCAP_DATA
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ATT_POS_MOCAP_DATA
impl Debug for ATT_POS_MOCAP_DATA
Source§impl Default for ATT_POS_MOCAP_DATA
impl Default for ATT_POS_MOCAP_DATA
Source§impl<'de> Deserialize<'de> for ATT_POS_MOCAP_DATA
impl<'de> Deserialize<'de> for ATT_POS_MOCAP_DATA
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 MessageData for ATT_POS_MOCAP_DATA
impl MessageData for ATT_POS_MOCAP_DATA
Source§impl PartialEq for ATT_POS_MOCAP_DATA
impl PartialEq for ATT_POS_MOCAP_DATA
Source§impl Serialize for ATT_POS_MOCAP_DATA
impl Serialize for ATT_POS_MOCAP_DATA
impl StructuralPartialEq for ATT_POS_MOCAP_DATA
Auto Trait Implementations§
impl Freeze for ATT_POS_MOCAP_DATA
impl RefUnwindSafe for ATT_POS_MOCAP_DATA
impl Send for ATT_POS_MOCAP_DATA
impl Sync for ATT_POS_MOCAP_DATA
impl Unpin for ATT_POS_MOCAP_DATA
impl UnwindSafe for ATT_POS_MOCAP_DATA
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