Changeset 35835 in osm for applications/editors/josm/plugins/seachart/src/render/ChartContext.java
- Timestamp:
- 2021-10-30T10:14:20+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/ChartContext.java
r35391 r35835 14 14 public interface ChartContext { 15 15 enum RuleSet { ALL, BASE, SEAMARK } 16 class Chart { 17 public int zoom; 18 public double scale; 19 public int grid; 20 public boolean rose; 21 public double roseLat; 22 public double roseLon; 23 public Chart() { 24 zoom = 15; 25 scale = 1.0; 26 grid = 0; 27 rose = false; 28 roseLat = roseLon = 0; 29 } 30 } 16 31 17 32 Point2D getPoint(Snode coord); … … 22 37 23 38 int grid(); 39 40 Chart chart(); 24 41 25 42 Color background(S57map map);
Note:
See TracChangeset
for help on using the changeset viewer.