From b3e0d4b5f31a9396219a6931826959d07ba91503 Mon Sep 17 00:00:00 2001 From: curt <curt> Date: Wed, 3 Sep 2003 22:10:51 +0000 Subject: [PATCH] Slightly tweak size of grass area surrounding airports. --- src/Airports/GenAirports/build.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Airports/GenAirports/build.cxx b/src/Airports/GenAirports/build.cxx index d334ca62..be989ddb 100644 --- a/src/Airports/GenAirports/build.cxx +++ b/src/Airports/GenAirports/build.cxx @@ -311,7 +311,7 @@ static void build_runway( const TGRunway& rwy_info, } else { base = gen_runway_area_w_extend( rwy_info, 0.0, 20.0, 20.0 ); // also clear a safe area around the runway - safe_base = gen_runway_area_w_extend( rwy_info, 0.0, 150.0, 60.0 ); + safe_base = gen_runway_area_w_extend( rwy_info, 0.0, 180.0, 50.0 ); } *apt_clearing = polygon_union(safe_base, *apt_clearing);