Ignore:
Timestamp:
2008-06-15T12:28:42+02:00 (15 years ago)
Author:
ramack
Message:

patch by bruce89, closes #812; thanks bruce

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  
    55
    66/**
    7  * Base class of points of both coordinate system.
     7 * Base class of points of both coordinate systems.
    88 *
    99 * The variables are default package protected to allow routines in the data package
     
    3030         * The x/y values are left uninitialized.
    3131         *
    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.
    3434         */
    3535        Coordinate(double x, double y) {
  • trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java

    r627 r655  
    33
    44/**
    5  * Northern, Easting of the projected coordinates.
     5 * Northing, Easting of the projected coordinates.
    66 *
    77 * This class is immutable.
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r627 r655  
    2828
    2929        /**
    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}.
    3233         */
    3334        public boolean equalsEpsilon(LatLon other) {
Note: See TracChangeset for help on using the changeset viewer.