source: osm/applications/editors/josm/plugins/seachart/src/render/ChartContext.java@ 35118

Last change on this file since 35118 was 32907, checked in by donvip, 8 years ago

checkstyle

File size: 451 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package render;
3
4import java.awt.Color;
5import java.awt.geom.Point2D;
6
7import s57.S57map;
8import s57.S57map.Feature;
9import s57.S57map.Snode;
10
11/**
12 * @author Malcolm Herring
13 */
14public interface ChartContext {
15 enum RuleSet { ALL, BASE, SEAMARK }
16
17 Point2D getPoint(Snode coord);
18
19 double mile(Feature feature);
20
21 boolean clip();
22
23 Color background(S57map map);
24
25 RuleSet ruleset();
26}
Note: See TracBrowser for help on using the repository browser.