Changeset 32909 in osm for applications/editors/josm/plugins/seachart/src/render
- Timestamp:
- 2016-09-03T16:52:05+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/seachart/src/render
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Renderer.java
r32907 r32909 68 68 if (map != null) { 69 69 if (context.clip()) { 70 Point2D tl = context.getPoint( map.new Snode(map.bounds.maxlat, map.bounds.minlon));71 Point2D br = context.getPoint( map.new Snode(map.bounds.minlat, map.bounds.maxlon));70 Point2D tl = context.getPoint(new Snode(map.bounds.maxlat, map.bounds.minlon)); 71 Point2D br = context.getPoint(new Snode(map.bounds.minlat, map.bounds.maxlon)); 72 72 g2.clip(new Rectangle2D.Double(tl.getX(), tl.getY(), (br.getX() - tl.getX()), (br.getY() - tl.getY()))); 73 73 } -
applications/editors/josm/plugins/seachart/src/render/Signals.java
r32907 r32909 365 365 } 366 366 367 class Sect { 367 static class Sect { 368 368 int dir; 369 369 LitCHR chr;
Note:
See TracChangeset
for help on using the changeset viewer.