1
0
Fork 0

Add the Mach vaiable.

This commit is contained in:
ehofman 2004-10-02 12:05:59 +00:00
parent 1af8736df6
commit 0304651a9b
2 changed files with 2 additions and 0 deletions

View file

@ -36,6 +36,7 @@ FGAIBallistic::FGAIBallistic(FGAIManager* mgr) {
gravity = 32;
// buoyancy = 64;
no_roll = false;
Mach = 0.4;
}
FGAIBallistic::~FGAIBallistic() {

View file

@ -67,6 +67,7 @@ private:
bool wind; // if true, local wind will be applied to object
double Cd; // drag coefficient
double mass; // slugs
double Mach;
void Run(double dt);
};