Changeset 655 in josm for trunk/src/org/openstreetmap/josm/data/coor
- Timestamp:
- 2008-06-15T12:28:42+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/coor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/Coordinate.java
r627 r655 5 5 6 6 /** 7 * Base class of points of both coordinate system .7 * Base class of points of both coordinate systems. 8 8 * 9 9 * The variables are default package protected to allow routines in the data package … … 30 30 * The x/y values are left uninitialized. 31 31 * 32 * @param lat Latitude of the point.33 * @param lon Longitude of the point.32 * @param x X coordinate of the point. 33 * @param y Y coordinate of the point. 34 34 */ 35 35 Coordinate(double x, double y) { -
trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java
r627 r655 3 3 4 4 /** 5 * North ern, Easting of the projected coordinates.5 * Northing, Easting of the projected coordinates. 6 6 * 7 7 * This class is immutable. -
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r627 r655 28 28 29 29 /** 30 * @return <code>true</code>, if the other point has almost the same lat/lon 31 * values, only differ by no more than 1/Projection.MAX_SERVER_PRECISION. 30 * @return <code>true</code> if the other point has almost the same lat/lon 31 * values, only differing by no more than 32 * 1 / {@link org.openstreetmap.josm.data.projection.Projection#MAX_SERVER_PRECISION MAX_SERVER_PRECISION}. 32 33 */ 33 34 public boolean equalsEpsilon(LatLon other) {
Note: See TracChangeset
for help on using the changeset viewer.