pub struct LighthouseBsGeometry {
pub origin: [f32; 3],
pub rotation_matrix: [[f32; 3]; 3],
pub valid: bool,
}Expand description
Geometry data for one lighthouse base station
Fields§
§origin: [f32; 3]Origin position of the base station [x, y, z] in meters
rotation_matrix: [[f32; 3]; 3]Rotation matrix of the base station (3x3)
valid: boolWhether this geometry data is valid
Implementations§
Trait Implementations§
Source§impl Clone for LighthouseBsGeometry
impl Clone for LighthouseBsGeometry
Source§fn clone(&self) -> LighthouseBsGeometry
fn clone(&self) -> LighthouseBsGeometry
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 LighthouseBsGeometry
impl Debug for LighthouseBsGeometry
Source§impl Default for LighthouseBsGeometry
impl Default for LighthouseBsGeometry
Source§impl PartialEq for LighthouseBsGeometry
impl PartialEq for LighthouseBsGeometry
impl StructuralPartialEq for LighthouseBsGeometry
Auto Trait Implementations§
impl Freeze for LighthouseBsGeometry
impl RefUnwindSafe for LighthouseBsGeometry
impl Send for LighthouseBsGeometry
impl Sync for LighthouseBsGeometry
impl Unpin for LighthouseBsGeometry
impl UnsafeUnpin for LighthouseBsGeometry
impl UnwindSafe for LighthouseBsGeometry
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