#include </home/runner/work/mars_lib/mars_lib/source/mars/include/mars/sensors/bodyvel/bodyvel_measurement_type.h>
◆ BodyvelMeasurementType() [1/2]
mars::BodyvelMeasurementType::BodyvelMeasurementType |
( |
| ) |
|
|
default |
◆ BodyvelMeasurementType() [2/2]
mars::BodyvelMeasurementType::BodyvelMeasurementType |
( |
Eigen::Vector3d |
velocity | ) |
|
|
inline |
32 {
33 }
EIGEN_MAKE_ALIGNED_OPERATOR_NEW Eigen::Vector3d velocity_
Velocity [x y z].
Definition bodyvel_measurement_type.h:27
◆ get_csv_state_header_string()
static std::string mars::BodyvelMeasurementType::get_csv_state_header_string |
( |
| ) |
|
|
inlinestatic |
36 {
37 std::stringstream os;
38 os << "t, ";
39 os << "v_x, v_y, v_z";
40
41 return os.str();
42 }
◆ to_csv_string()
std::string mars::BodyvelMeasurementType::to_csv_string |
( |
const double & |
timestamp | ) |
const |
|
inline |
45 {
46 std::stringstream os;
47 os.precision(17);
48 os << timestamp;
49
51
52 return os.str();
53 }
◆ velocity_
EIGEN_MAKE_ALIGNED_OPERATOR_NEW Eigen::Vector3d mars::BodyvelMeasurementType::velocity_ |
The documentation for this class was generated from the following file: