Changeset 4640 in josm for trunk/src/org
- Timestamp:
- 2011-12-08T00:55:17+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java
r4134 r4640 60 60 return hd; 61 61 } 62 63 /** 64 * Replies true if east and north are different from Double.NaN 65 * 66 * @return true if east and north are different from Double.NaN 67 */ 68 public boolean isValid() { 69 return !java.lang.Double.isNaN(x) && !java.lang.Double.isNaN(y); 70 } 62 71 63 72 public EastNorth sub(EastNorth en) {
Note:
See TracChangeset
for help on using the changeset viewer.