Fix ugly printing
parent
f04d8125ef
commit
e4b18b5f15
|
@ -66,8 +66,8 @@ namespace imuBias {
|
||||||
// }
|
// }
|
||||||
/// ostream operator
|
/// ostream operator
|
||||||
std::ostream& operator<<(std::ostream& os, const ConstantBias& bias) {
|
std::ostream& operator<<(std::ostream& os, const ConstantBias& bias) {
|
||||||
os << "acc = " << Point3(bias.accelerometer());
|
os << "acc = " << bias.accelerometer().transpose();
|
||||||
os << " gyro = " << Point3(bias.gyroscope());
|
os << " gyro = " << bias.gyroscope().transpose();
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue