onboardsdk
Loading...
Searching...
No Matches
StateEstimates.hpp
1#pragma once
2
3namespace blunux::observer {
8 float depth{};
9 float depth_rate{};
10 float surface{};
11 float roll{};
12 float roll_rate{};
13 float pitch{};
14 float pitch_rate{};
15 float heading{};
16 float yaw_rate{};
17};
18
19} // namespace blunux::observer
Structure representing state estimates.
Definition StateEstimates.hpp:7
float pitch_rate
Definition StateEstimates.hpp:14
float yaw_rate
Definition StateEstimates.hpp:16
float depth
Definition StateEstimates.hpp:8
float heading
Definition StateEstimates.hpp:15
float pitch
Definition StateEstimates.hpp:13
float roll
Definition StateEstimates.hpp:11
float depth_rate
Definition StateEstimates.hpp:9
float surface
Definition StateEstimates.hpp:10
float roll_rate
Definition StateEstimates.hpp:12