source: osm/applications/editors/josm/plugins/smed2/src/render/MapContext.java@ 30317

Last change on this file since 30317 was 30285, checked in by malcolmh, 11 years ago

save

File size: 490 bytes
Line 
1/* Copyright 2014 Malcolm Herring
2 *
3 * This is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License.
6 *
7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>.
8 */
9
10package render;
11
12import java.awt.geom.Point2D;
13
14import s57.S57map.*;
15
16public interface MapContext {
17 Point2D getPoint(Snode coord);
18 double mile(Feature feature);
19}
Note: See TracBrowser for help on using the repository browser.