Ignore:
Timestamp:
2014-02-14T20:00:05+01:00 (11 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/render/Renderer.java

    r30269 r30281  
    217217                        Symbol symbol = prisymb;
    218218                        GeomIterator git = map.new GeomIterator(feature.geom);
    219                         while (git.hasMore()) {
    220                                 git.getMore();
     219                        while (git.hasComp()) {
     220                                git.nextComp();
    221221                                boolean first = true;
    222                                 while (git.hasNext()) {
     222                                while (git.hasNode()) {
    223223                                        prev = next;
    224224                                        next = context.getPoint(git.next());
     
    276276                Point2D point;
    277277                GeomIterator git = map.new GeomIterator(feature.geom);
    278                 while (git.hasMore()) {
    279                         git.getMore();
     278                while (git.hasComp()) {
     279                        git.nextComp();
    280280                        point = context.getPoint(git.next());
    281281                        p.moveTo(point.getX(), point.getY());
    282                         while (git.hasNext()) {
     282                        while (git.hasNode()) {
    283283                                point = context.getPoint(git.next());
    284284                                p.lineTo(point.getX(), point.getY());
     
    351351                case AREA:
    352352                        GeomIterator git = map.new GeomIterator(feature.geom);
    353                         while (git.hasMore()) {
    354                                 git.getMore();
     353                        while (git.hasComp()) {
     354                                git.nextComp();
    355355                                point = context.getPoint(git.next());
    356356                                p.moveTo(point.getX(), point.getY());
    357                                 while (git.hasNext()) {
     357                                while (git.hasNode()) {
    358358                                        point = context.getPoint(git.next());
    359359                                        p.lineTo(point.getX(), point.getY());
     
    497497                        double angle = 0;
    498498                        GeomIterator git = map.new GeomIterator(feature.geom);
    499                         while (git.hasMore()) {
    500                                 git.getMore();
     499                        while (git.hasComp()) {
     500                                git.nextComp();
    501501                                boolean first = true;
    502                                 while (git.hasNext()) {
     502                                while (git.hasNode()) {
    503503                                        prev = next;
    504504                                        next = context.getPoint(git.next());
Note: See TracChangeset for help on using the changeset viewer.