]> git.mxchange.org Git - flightgear.git/commitdiff
tweak ...
authorcurt <curt>
Tue, 20 Oct 1998 15:49:54 +0000 (15:49 +0000)
committercurt <curt>
Tue, 20 Oct 1998 15:49:54 +0000 (15:49 +0000)
GenAirports/area.cxx

index aeb10455250551738563b5d0e48ee633a28ca86d..75d785377be8805c662d9b645fc717e49b2fdf29 100644 (file)
@@ -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