Changeset 35986 in osm for applications/editors


Ignore:
Timestamp:
2022-06-17T15:05:30+02:00 (2 years ago)
Author:
taylor.smock
Message:

Fix #22146: build.xml for utilsplugin2 was not updated (part 1)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/curves/CircleArcMaker.java

    r35978 r35986  
    2222import org.openstreetmap.josm.data.UndoRedoHandler;
    2323import org.openstreetmap.josm.data.coor.EastNorth;
    24 import org.openstreetmap.josm.data.coor.ILatLon;
     24import org.openstreetmap.josm.data.coor.LatLon;
    2525import org.openstreetmap.josm.data.coor.PolarCoor;
    2626import org.openstreetmap.josm.data.osm.DataSet;
     
    108108
    109109        // see #10777: calculate reasonable number of nodes for full circle (copy from CreateCircleAction)
    110         ILatLon ll1 = ProjectionRegistry.getProjection().eastNorth2latlon(p1);
    111         ILatLon ll2 = ProjectionRegistry.getProjection().eastNorth2latlon(center);
     110        LatLon ll1 = ProjectionRegistry.getProjection().eastNorth2latlon(p1);
     111        LatLon ll2 = ProjectionRegistry.getProjection().eastNorth2latlon(center);
    112112
    113113        double radiusInMeters = ll1.greatCircleDistance(ll2);
Note: See TracChangeset for help on using the changeset viewer.