From 477753ef945a56ac5b33a2d4e17398866bad30f0 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 20 Oct 1998 15:49:54 +0000 Subject: [PATCH] tweak ... --- GenAirports/area.cxx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/GenAirports/area.cxx b/GenAirports/area.cxx index aeb104552..75d785377 100644 --- a/GenAirports/area.cxx +++ b/GenAirports/area.cxx @@ -125,9 +125,12 @@ gen_area(point2d origin, double angle, list < point2d > cart_list) current = rad_list.begin(); last = rad_list.end(); for ( ; current != last ; ++current ) { - current->theta -= angle; - while ( current->theta > FG_2PI ) { - current->theta -= FG_2PI; + current->theta -= angle; + while ( current->theta > FG_2PI ) { + current->theta -= FG_2PI; + // (*current).theta -= angle; + // while ( (*current).theta > FG_2PI ) { + // (*current).theta -= FG_2PI; } // printf("(%.2f, %.2f)\n", current->theta, current->dist); } @@ -215,6 +218,9 @@ gen_runway_area( double lon, double lat, double heading, // $Log$ +// Revision 1.5 1998/10/20 15:49:54 curt +// tweak ... +// // Revision 1.4 1998/09/09 20:59:53 curt // Loop construct tweaks for STL usage. // Output airport file to be used to generate airport scenery on the fly -- 2.39.2