1
0
Fork 0

Pass through ground speed for hud ETA calculation.

This commit is contained in:
curt 1999-10-10 16:48:21 +00:00
parent 303326d256
commit 5bb9223dda
2 changed files with 3 additions and 3 deletions

View file

@ -313,7 +313,7 @@ int fgLaRCsim_2_FGInterface (FGInterface& f) {
// f.set_V_true_kts( V_true_kts ); // f.set_V_true_kts( V_true_kts );
// f.set_V_rel_ground( V_rel_ground ); // f.set_V_rel_ground( V_rel_ground );
// f.set_V_inertial( V_inertial ); // f.set_V_inertial( V_inertial );
// f.set_V_ground_speed( V_ground_speed ); f.set_V_ground_speed( V_ground_speed );
// f.set_V_equiv( V_equiv ); // f.set_V_equiv( V_equiv );
f.set_V_equiv_kts( V_equiv_kts ); f.set_V_equiv_kts( V_equiv_kts );
// f.set_V_calibrated( V_calibrated ); // f.set_V_calibrated( V_calibrated );

View file

@ -473,8 +473,8 @@ public:
// inline double get_V_inertial() const { return v_inertial; } // inline double get_V_inertial() const { return v_inertial; }
// inline void set_V_inertial(double v) { v_inertial = v; } // inline void set_V_inertial(double v) { v_inertial = v; }
// inline double get_V_ground_speed() const { return v_ground_speed; } inline double get_V_ground_speed() const { return v_ground_speed; }
// inline void set_V_ground_speed( double v) { v_ground_speed = v; } inline void set_V_ground_speed( double v) { v_ground_speed = v; }
// inline double get_V_equiv() const { return v_equiv; } // inline double get_V_equiv() const { return v_equiv; }
// inline void set_V_equiv( double v ) { v_equiv = v; } // inline void set_V_equiv( double v ) { v_equiv = v; }