EKF hotfix: Remove unused variables, use default initializer list for vectors

This commit is contained in:
Lorenz Meier
2014-07-13 15:39:35 +02:00
parent 3d505c6f42
commit e8855423be
2 changed files with 1 additions and 5 deletions
@@ -172,8 +172,6 @@ public:
unsigned covSkipCount; // Number of state prediction frames (IMU daya updates to skip before doing the covariance prediction
// GPS input data variables
float gpsCourse;
float gpsVelD;
double gpsLat;
double gpsLon;
float gpsHgt;
@@ -19,9 +19,7 @@ public:
float y;
float z;
Vector3f() { zero(); }
Vector3f(float a, float b, float c) :
Vector3f(float a=0.0f, float b=0.0f, float c=0.0f) :
x(a),
y(b),
z(c)