]> git.mxchange.org Git - simgear.git/commitdiff
Tweaks for poles.
authorcurt <curt>
Thu, 6 May 1999 02:27:24 +0000 (02:27 +0000)
committercurt <curt>
Thu, 6 May 1999 02:27:24 +0000 (02:27 +0000)
Lib/Bucket/newbucket.hxx

index 624ccb7d61a3cea77b366f1ff8a72bdaa62da706..6871b3ee67cd8fd4a230ec8420f2882f76afa674 100644 (file)
@@ -122,7 +122,7 @@ public:
 // return the horizontal tile span factor based on latitude
 inline double bucket_span( double l ) {
     if ( l >= 89.0 ) {
-       return 0.0;
+       return 360.0;
     } else if ( l >= 88.0 ) {
        return 8.0;
     } else if ( l >= 86.0 ) {
@@ -150,7 +150,7 @@ inline double bucket_span( double l ) {
     } else if ( l >= -89.0 ) {
        return 8.0;
     } else {
-       return 0.0;
+       return 360.0;
     }
 }