Ignore:
Timestamp:
2009-12-04T18:51:12+01:00 (15 years ago)
Author:
stoecker
Message:

cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Grabber.java

    r17556 r18942  
    2929            double eastSize =  b.max.east() - b.min.east();
    3030            double northSize =  b.max.north() - b.min.north();
    31    
     31
    3232            double eastCoef = WMSPlugin.overlapEast / 100.0;
    3333            double northCoef = WMSPlugin.overlapNorth / 100.0;
    34              
    35             this.b = new ProjectionBounds( new EastNorth(b.min.east(), 
     34
     35            this.b = new ProjectionBounds( new EastNorth(b.min.east(),
    3636                                            b.min.north()),
    3737                                 new EastNorth(b.max.east() + eastCoef * eastSize,
    38                                             b.max.north() + northCoef * northSize));             
     38                                            b.max.north() + northCoef * northSize));
    3939        } else
    4040           this.b = b;
Note: See TracChangeset for help on using the changeset viewer.