Comment out stray cout
This commit is contained in:
parent
36d3d7fab6
commit
87be5d93a5
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ void FGAILocalTraffic::FlyTrafficPattern(double dt) {
|
||||||
double magg = sqrt(gxx*gxx + gyy*gyy);
|
double magg = sqrt(gxx*gxx + gyy*gyy);
|
||||||
crab = acos((axx*gxx + ayy*gyy) / (maga * magg));
|
crab = acos((axx*gxx + ayy*gyy) / (maga * magg));
|
||||||
// At this point this works except we're getting the modulus of the angle
|
// At this point this works except we're getting the modulus of the angle
|
||||||
cout << "crab = " << crab << '\n';
|
//cout << "crab = " << crab << '\n';
|
||||||
|
|
||||||
// Make sure both headings are in the 0->360 circle in order to get sane differences
|
// Make sure both headings are in the 0->360 circle in order to get sane differences
|
||||||
dclBoundHeading(wind_from);
|
dclBoundHeading(wind_from);
|
||||||
|
|
Loading…
Reference in a new issue