Changeset 40
- Timestamp:
- 07/29/07 01:07:16 (5 years ago)
- Location:
- bbtracker_common/trunk/src/org/bbtracker
- Files:
-
- 2 edited
-
Track.java (modified) (1 diff)
-
TrackSegment.java (modified) (1 diff)
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) { -
bbtracker_common/trunk/src/org/bbtracker/TrackSegment.java
r30 r40 10 10 private final Vector points; 11 11 12 transient double minLatitude = Double. MAX_VALUE;12 transient double minLatitude = Double.POSITIVE_INFINITY; 13 13 14 transient double maxLatitude = Double. MIN_VALUE;14 transient double maxLatitude = Double.NEGATIVE_INFINITY; 15 15 16 transient double minLongitude = Double. MAX_VALUE;16 transient double minLongitude = Double.POSITIVE_INFINITY; 17 17 18 transient double maxLongitude = Double. MIN_VALUE;18 transient double maxLongitude = Double.NEGATIVE_INFINITY; 19 19 20 20 transient double length = 0;
Note: See TracChangeset
for help on using the changeset viewer.