Changeset 32909 in osm for applications/editors/josm/plugins/seachart/src/render/Renderer.java
- Timestamp:
- 2016-09-03T16:52:05+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified 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 }
Note:
See TracChangeset
for help on using the changeset viewer.
