pub struct LighthouseCalibrationSweep {
pub phase: f32,
pub tilt: f32,
pub curve: f32,
pub gibmag: f32,
pub gibphase: f32,
pub ogeemag: f32,
pub ogeephase: f32,
}Expand description
Calibration data for one sweep of a lighthouse base station
Fields§
§phase: f32Phase offset
tilt: f32Tilt angle
curve: f32Curve compensation
gibmag: f32Gibbs magnitude
gibphase: f32Gibbs phase
ogeemag: f32OGEE magnitude
ogeephase: f32OGEE phase
Implementations§
Trait Implementations§
Source§impl Clone for LighthouseCalibrationSweep
impl Clone for LighthouseCalibrationSweep
Source§fn clone(&self) -> LighthouseCalibrationSweep
fn clone(&self) -> LighthouseCalibrationSweep
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 LighthouseCalibrationSweep
impl Debug for LighthouseCalibrationSweep
Source§impl Default for LighthouseCalibrationSweep
impl Default for LighthouseCalibrationSweep
Source§fn default() -> LighthouseCalibrationSweep
fn default() -> LighthouseCalibrationSweep
Returns the “default value” for a type. Read more
impl Copy for LighthouseCalibrationSweep
impl StructuralPartialEq for LighthouseCalibrationSweep
Auto Trait Implementations§
impl Freeze for LighthouseCalibrationSweep
impl RefUnwindSafe for LighthouseCalibrationSweep
impl Send for LighthouseCalibrationSweep
impl Sync for LighthouseCalibrationSweep
impl Unpin for LighthouseCalibrationSweep
impl UnsafeUnpin for LighthouseCalibrationSweep
impl UnwindSafe for LighthouseCalibrationSweep
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