Get rid of 'shadow-field' errors/warnings
parent
8830896f01
commit
cb8cd25b28
|
|
@ -51,8 +51,8 @@ struct GTSAM_EXPORT PreintegrationCombinedParams : PreintegrationParams {
|
|||
|
||||
/// See two named constructors below for good values of n_gravity in body
|
||||
/// frame
|
||||
PreintegrationCombinedParams(const Vector3& n_gravity)
|
||||
: PreintegrationParams(n_gravity),
|
||||
PreintegrationCombinedParams(const Vector3& n_gravity_)
|
||||
: PreintegrationParams(n_gravity_),
|
||||
biasAccCovariance(I_3x3),
|
||||
biasOmegaCovariance(I_3x3),
|
||||
biasAccOmegaInt(I_6x6) {}
|
||||
|
|
|
|||
|
|
@ -40,12 +40,12 @@ struct GTSAM_EXPORT PreintegrationParams: PreintegratedRotationParams {
|
|||
|
||||
/// The Params constructor insists on getting the navigation frame gravity vector
|
||||
/// For convenience, two commonly used conventions are provided by named constructors below
|
||||
PreintegrationParams(const Vector3& n_gravity)
|
||||
PreintegrationParams(const Vector3& n_gravity_)
|
||||
: PreintegratedRotationParams(),
|
||||
accelerometerCovariance(I_3x3),
|
||||
integrationCovariance(I_3x3),
|
||||
use2ndOrderCoriolis(false),
|
||||
n_gravity(n_gravity) {}
|
||||
n_gravity(n_gravity_) {}
|
||||
|
||||
// Default Params for a Z-down navigation frame, such as NED: gravity points along positive Z-axis
|
||||
static std::shared_ptr<PreintegrationParams> MakeSharedD(double g = 9.81) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue