use crate::impl_standard_traits;
use core::fmt::{Debug, Formatter};
use core::ops::{Mul, Sub};
use uniform_array_derive::UniformArray;
#[derive(UniformArray)]
#[cfg_attr(test, ensure_uniform_type::ensure_uniform_type)]
#[repr(C)]
pub struct GyroscopeBias<T> {
pub omega_x: T,
pub omega_y: T,
pub omega_z: T,
}
impl<T> GyroscopeBias<T> {
#[inline(always)]
pub const fn new(omega_x: T, omega_y: T, omega_z: T) -> Self {
Self {
omega_x,
omega_y,
omega_z,
}
}
}
impl<T> Default for GyroscopeBias<T>
where
T: Default,
{
#[inline]
fn default() -> Self {
Self::new(Default::default(), Default::default(), Default::default())
}
}
impl<T> Clone for GyroscopeBias<T>
where
T: Clone,
{
fn clone(&self) -> Self {
Self {
omega_x: self.omega_x.clone(),
omega_y: self.omega_y.clone(),
omega_z: self.omega_z.clone(),
}
}
}
impl<T> Debug for GyroscopeBias<T>
where
T: Debug,
{
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
f.debug_tuple("GyroscopeBias")
.field(&self.omega_x)
.field(&self.omega_y)
.field(&self.omega_z)
.finish()
}
}
impl<T> Mul<T> for GyroscopeBias<T>
where
T: Mul<T, Output = T> + Clone,
{
type Output = GyroscopeBias<T>;
fn mul(self, rhs: T) -> Self::Output {
Self {
omega_x: self.omega_x * rhs.clone(),
omega_y: self.omega_y * rhs.clone(),
omega_z: self.omega_z * rhs.clone(),
}
}
}
impl<T> Sub<T> for GyroscopeBias<T>
where
T: Sub<T, Output = T> + Clone,
{
type Output = GyroscopeBias<T>;
fn sub(self, rhs: T) -> Self::Output {
Self {
omega_x: self.omega_x - rhs.clone(),
omega_y: self.omega_y - rhs.clone(),
omega_z: self.omega_z - rhs.clone(),
}
}
}
impl_standard_traits!(GyroscopeBias, T);
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_len() {
let reading = GyroscopeBias::<f32>::default();
assert_eq!(reading.len(), 3);
}
#[test]
fn test_index() {
let reading = GyroscopeBias::<f32> {
omega_x: 1.0,
omega_y: 2.0,
omega_z: 3.0,
};
assert_eq!(reading[0], 1.0);
assert_eq!(reading[1], 2.0);
assert_eq!(reading[2], 3.0);
}
}