Ignore:
Timestamp:
2009-02-08T20:34:53+01:00 (17 years ago)
Author:
pieren
Message:

Fix minor issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/EastNorthBound.java

    r13545 r13611  
    2323    }
    2424
     25    public EastNorthBound interpolate(EastNorthBound en2, double proportion) {
     26        EastNorthBound enb = new EastNorthBound(this.min.interpolate(en2.min, proportion),
     27                this.max.interpolate(en2.max, proportion));
     28        return enb;
     29    }
     30
    2531    @Override public String toString() {
    2632        return "EastNorthBound[" + min.east() + "," + min.north() + "," + max.east() + "," + max.north() + "]";
Note: See TracChangeset for help on using the changeset viewer.