Ignore:
Timestamp:
2006-03-25T16:21:09+01:00 (18 years ago)
Author:
imi
Message:
  • refactored GpsPoint to be immutable and added LatLon and NorthEast
  • refactored Bounding Box calculations
  • various other renames
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/data/projection/Projection.java

    r58 r71  
    11package org.openstreetmap.josm.data.projection;
    22
    3 import org.openstreetmap.josm.data.GeoPoint;
     3import org.openstreetmap.josm.data.coor.LatLon;
     4import org.openstreetmap.josm.data.coor.EastNorth;
    45
    56/**
     
    2021         * @param p             The geo point to convert. x/y members of the point are filled.
    2122         */
    22         void latlon2xy(GeoPoint p);
     23        EastNorth latlon2eastNorth(LatLon p);
    2324       
    2425        /**
     
    2728         * @param p             The geo point to convert. lat/lon members of the point are filled.
    2829         */
    29         void xy2latlon(GeoPoint p);
     30        LatLon eastNorth2latlon(EastNorth p);
    3031
    3132        /**
Note: See TracChangeset for help on using the changeset viewer.