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