Changeset 4622 in josm for trunk/src


Ignore:
Timestamp:
2011-11-30T00:07:53+01:00 (12 years ago)
Author:
Don-vip
Message:

Method to get the center of a BBox

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/BBox.java

    r4420 r4622  
    175175        return new LatLon(ymin, xmax);
    176176    }
     177   
     178    public LatLon getCenter() {
     179        return new LatLon(ymin + (ymax-ymin)/2.0, xmin + (xmax-xmin)/2.0);
     180    }
    177181
    178182    @Override
Note: See TracChangeset for help on using the changeset viewer.