Changeset 8127 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2015-03-08T23:58:53+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Geometry.java
r7864 r8127 763 763 764 764 if (n0 != null && n1 != null && n0.isValid() && n1.isValid()) { 765 BigDecimal x0 = new BigDecimal(n0.east());766 BigDecimal y0 = new BigDecimal(n0.north());767 BigDecimal x1 = new BigDecimal(n1.east());768 BigDecimal y1 = new BigDecimal(n1.north());765 BigDecimal x0 = BigDecimal.valueOf(n0.east()); 766 BigDecimal y0 = BigDecimal.valueOf(n0.north()); 767 BigDecimal x1 = BigDecimal.valueOf(n1.east()); 768 BigDecimal y1 = BigDecimal.valueOf(n1.north()); 769 769 770 770 BigDecimal k = x0.multiply(y1, MathContext.DECIMAL128).subtract(y0.multiply(x1, MathContext.DECIMAL128));
Note:
See TracChangeset
for help on using the changeset viewer.