Skip to content
Snippets Groups Projects
Commit ef209f36 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

format

parent e44e021d
No related branches found
No related tags found
1 merge request!8Remove sensor from processor creators
......@@ -30,15 +30,15 @@ struct IntrinsicsGnss : public IntrinsicsBase
yaw_fixed_ = _server.getParam<bool>(_unique_name + "/yaw_fixed");
translation_fixed_ = _server.getParam<bool>(_unique_name + "/translation_fixed");
}
std::string print()
{
return "\n" + IntrinsicsBase::print()
+ "extrinsics_fixed: " + std::to_string(extrinsics_fixed_) + "\n"
+ "roll_fixed: " + std::to_string(roll_fixed_) + "\n"
+ "pitch_fixed: " + std::to_string(pitch_fixed_) + "\n"
+ "yaw_fixed: " + std::to_string(yaw_fixed_) + "\n"
+ "translation_fixed: " + std::to_string(translation_fixed_) + "\n";
}
std::string print()
{
return "\n" + IntrinsicsBase::print()
+ "extrinsics_fixed: " + std::to_string(extrinsics_fixed_) + "\n"
+ "roll_fixed: " + std::to_string(roll_fixed_) + "\n"
+ "pitch_fixed: " + std::to_string(pitch_fixed_) + "\n"
+ "yaw_fixed: " + std::to_string(yaw_fixed_) + "\n"
+ "translation_fixed: " + std::to_string(translation_fixed_) + "\n";
}
};
class SensorGnss : public SensorBase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment