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/Track.java

    r30 r40  
    1717        private transient int pointCount; 
    1818 
    19         private transient double minLatitude = Double.MAX_VALUE; 
    20  
    21         private transient double maxLatitude = Double.MIN_VALUE; 
    22  
    23         private transient double minLongitude = Double.MAX_VALUE; 
    24  
    25         private transient double maxLongitude = Double.MIN_VALUE; 
     19        private transient double minLatitude = Double.POSITIVE_INFINITY; 
     20 
     21        private transient double maxLatitude = Double.NEGATIVE_INFINITY; 
     22 
     23        private transient double minLongitude = Double.POSITIVE_INFINITY; 
     24 
     25        private transient double maxLongitude = Double.NEGATIVE_INFINITY; 
    2626 
    2727        public Track(final String name) { 
Note: See TracChangeset for help on using the changeset viewer.