From: curt Date: Wed, 27 Oct 1999 00:44:16 +0000 (+0000) Subject: Tweaks by David Megginson. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b5667ed39886504db2a665f80459aa0da75ace5;p=flightgear.git Tweaks by David Megginson. --- diff --git a/src/FDM/Balloon.cxx b/src/FDM/Balloon.cxx index ec77205b0..85331bb63 100644 --- a/src/FDM/Balloon.cxx +++ b/src/FDM/Balloon.cxx @@ -110,7 +110,7 @@ int FGBalloonSim::update( int multiloop ) { } // set control positions - current_balloon.set_burner_strength ( controls.get_elevator() ); /*controls.get_throttle( 0 )*/ + current_balloon.set_burner_strength ( controls.get_throttle(0) ); //not more implemented yet // Inform BalloonSim of the local terrain altitude diff --git a/src/FDM/Balloon/BalloonSim.cpp b/src/FDM/Balloon/BalloonSim.cpp index dc8ae6cb8..bb1454051 100644 --- a/src/FDM/Balloon/BalloonSim.cpp +++ b/src/FDM/Balloon/BalloonSim.cpp @@ -106,15 +106,15 @@ void balloon::update() { /************************************************************************/ /* I'm simplifying the balloon by reducing the simulation to two */ - /* points: */ + /* points: */ /* the center of the basket (CB) and the center of the envelope (CE) */ - /* */ - /* ce */ - /* I */ - /* I */ - /* cg (=center of gravity) */ - /* I */ - /* cb */ + /* */ + /* ce */ + /* I */ + /* I */ + /* cg (=center of gravity) */ + /* I */ + /* cb */ /* */ /* On each center are forces acting: gravity and wind resitance. CE */ /* additionally got the lift (=> I need to calculate the weight of the */ @@ -240,7 +240,7 @@ void balloon::update() // care for the ground if (position[2] < (ground_level+0.001) ) - velocity[2] = ground_level; + position[2] = ground_level; //return results sgAddVec3(position, dTotal);