Changeset 40 for bbtracker_common/trunk/src/org/bbtracker/TrackSegment.java
- Timestamp:
- 07/29/07 01:07:16 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.