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