Changeset 40 for bbtracker_common/trunk/src/org/bbtracker/Track.java
- Timestamp:
- 07/29/07 01:07:16 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bbtracker_common/trunk/src/org/bbtracker/Track.java
r30 r40 17 17 private transient int pointCount; 18 18 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; 26 26 27 27 public Track(final String name) {
Note: See TracChangeset
for help on using the changeset viewer.