|
template<typename T > |
using | sygaldry::accl_t = std::remove_cvref_t< decltype(accl_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the accelerometer data of a presumed MIMU data structure.
|
|
template<typename T > |
using | sygaldry::gyro_t = std::remove_cvref_t< decltype(gyro_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the gyroscope data of a presumed MIMU data structure.
|
|
template<typename T > |
using | sygaldry::magn_t = std::remove_cvref_t< decltype(magn_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the magnetometer data of a presumed MIMU data structure.
|
|
template<typename T > |
using | sygaldry::vecx_t = std::remove_cvref_t< decltype(vecx_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the x component of a presumed MIMU data vector.
|
|
template<typename T > |
using | sygaldry::vecy_t = std::remove_cvref_t< decltype(vecy_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the y component of a presumed MIMU data vector.
|
|
template<typename T > |
using | sygaldry::vecz_t = std::remove_cvref_t< decltype(vecz_of(std::declval< std::remove_cvref_t< T > & >()))> |
| Access the type of the z component of a presumed MIMU data vector.
|
|
|
auto & | sygaldry::accl_of (auto &mimu_data) |
| Access the accelerometer data of a presumed MIMU data structure.
|
|
auto & | sygaldry::gyro_of (auto &mimu_data) |
| Access the gyroscope data of a presumed MIMU data structure.
|
|
auto & | sygaldry::magn_of (auto &mimu_data) |
| Access the magnetometer data of a presumed MIMU data structure.
|
|
auto & | sygaldry::vecx_of (auto &mimu_data) |
| Access the first vector component of a presumed MIMU data vector.
|
|
auto & | sygaldry::vecy_of (auto &mimu_data) |
| Access the second vector component of a presumed MIMU data vector.
|
|
auto & | sygaldry::vecz_of (auto &mimu_data) |
| Access the third vector component of a presumed MIMU data vector.
|
|
auto & | sygaldry::accl_of (MimuComponent auto &mimu) |
| Access the accelerometer data of a MIMU component.
|
|
auto & | sygaldry::gyro_of (MimuComponent auto &mimu) |
| Access the gyroscope data of a MIMU component.
|
|
auto & | sygaldry::magn_of (MimuComponent auto &mimu) |
| Access the magnetometer data of a MIMU component.
|
|
auto | sygaldry::accl_x (auto &mimu) |
| Access the first vector component of the accelerometer data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::accl_y (auto &mimu) |
| Access the second vector component of the accelerometer data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::accl_z (auto &mimu) |
| Access the third vector component of the accelerometer data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::gyro_x (auto &mimu) |
| Access the first vector component of the gyroscope data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::gyro_y (auto &mimu) |
| Access the second vector component of the gyroscope data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::gyro_z (auto &mimu) |
| Access the third vector component of the gyroscope data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::magn_x (auto &mimu) |
| Access the first vector component of the magnetometer data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::magn_y (auto &mimu) |
| Access the second vector component of the magnetometer data of a MIMU data structure or MIMU component.
|
|
auto | sygaldry::magn_z (auto &mimu) |
| Access the third vector component of the magnetometer data of a MIMU data structure or MIMU component.
|
|