fixed bug in operator - for ImuBias
parent
b2dcf35e77
commit
447ebd1233
|
|
@ -154,7 +154,7 @@ namespace imuBias {
|
||||||
|
|
||||||
/** subtraction */
|
/** subtraction */
|
||||||
ConstantBias operator-(const ConstantBias& b) const {
|
ConstantBias operator-(const ConstantBias& b) const {
|
||||||
return ConstantBias(b.biasAcc_ - biasAcc_, b.biasGyro_ - biasGyro_);
|
return ConstantBias(biasAcc_ - b.biasAcc_, biasGyro_ - b.biasGyro_);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue