Changeset 30281 in osm for applications/editors/josm/plugins/smed2/src
- Timestamp:
- 2014-02-14T20:00:05+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/render/Renderer.java
r30269 r30281 217 217 Symbol symbol = prisymb; 218 218 GeomIterator git = map.new GeomIterator(feature.geom); 219 while (git.has More()) {220 git. getMore();219 while (git.hasComp()) { 220 git.nextComp(); 221 221 boolean first = true; 222 while (git.hasN ext()) {222 while (git.hasNode()) { 223 223 prev = next; 224 224 next = context.getPoint(git.next()); … … 276 276 Point2D point; 277 277 GeomIterator git = map.new GeomIterator(feature.geom); 278 while (git.has More()) {279 git. getMore();278 while (git.hasComp()) { 279 git.nextComp(); 280 280 point = context.getPoint(git.next()); 281 281 p.moveTo(point.getX(), point.getY()); 282 while (git.hasN ext()) {282 while (git.hasNode()) { 283 283 point = context.getPoint(git.next()); 284 284 p.lineTo(point.getX(), point.getY()); … … 351 351 case AREA: 352 352 GeomIterator git = map.new GeomIterator(feature.geom); 353 while (git.has More()) {354 git. getMore();353 while (git.hasComp()) { 354 git.nextComp(); 355 355 point = context.getPoint(git.next()); 356 356 p.moveTo(point.getX(), point.getY()); 357 while (git.hasN ext()) {357 while (git.hasNode()) { 358 358 point = context.getPoint(git.next()); 359 359 p.lineTo(point.getX(), point.getY()); … … 497 497 double angle = 0; 498 498 GeomIterator git = map.new GeomIterator(feature.geom); 499 while (git.has More()) {500 git. getMore();499 while (git.hasComp()) { 500 git.nextComp(); 501 501 boolean first = true; 502 while (git.hasN ext()) {502 while (git.hasNode()) { 503 503 prev = next; 504 504 next = context.getPoint(git.next());
Note:
See TracChangeset
for help on using the changeset viewer.