Ignore:
Timestamp:
07/29/07 01:07:16 (5 years ago)
Author:
saua
Message:

Fix issue #15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bbtracker_common/trunk/src/org/bbtracker/TrackSegment.java

    r30 r40  
    1010        private final Vector points; 
    1111 
    12         transient double minLatitude = Double.MAX_VALUE; 
     12        transient double minLatitude = Double.POSITIVE_INFINITY; 
    1313 
    14         transient double maxLatitude = Double.MIN_VALUE; 
     14        transient double maxLatitude = Double.NEGATIVE_INFINITY; 
    1515 
    16         transient double minLongitude = Double.MAX_VALUE; 
     16        transient double minLongitude = Double.POSITIVE_INFINITY; 
    1717 
    18         transient double maxLongitude = Double.MIN_VALUE; 
     18        transient double maxLongitude = Double.NEGATIVE_INFINITY; 
    1919 
    2020        transient double length = 0; 
Note: See TracChangeset for help on using the changeset viewer.