1
0
Fork 0

Fix a small (but potentially confusing) spelling error.

This commit is contained in:
curt 2004-04-26 16:22:21 +00:00
parent de27ab5bf7
commit ae939e2e44
2 changed files with 3 additions and 3 deletions

View file

@ -198,8 +198,8 @@ TGAptSurface::TGAptSurface( const string& path,
SG_LOG( SG_GENERAL, SG_DEBUG,
"Area size = " << y_m << " x " << x_m << " (m)" );
int xdivs = (int)(x_m / course_grid) + 1;
int ydivs = (int)(y_m / course_grid) + 1;
int xdivs = (int)(x_m / coarse_grid) + 1;
int ydivs = (int)(y_m / coarse_grid) + 1;
if ( xdivs < 3 ) { xdivs = 3; }
if ( ydivs < 3 ) { ydivs = 3; }

View file

@ -29,7 +29,7 @@
extern int nudge;
// Final grid size for airport surface (in meters)
const double course_grid = 700.0;
const double coarse_grid = 700.0;
// compared to the average surface elevation, clamp all values within
// this many meters of the average