Changeset 6296 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2013-10-04T03:27:01+02:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
-
Diff.java (modified) (3 diffs)
-
Geometry.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Diff.java
r6295 r6296 272 272 && yoff + SNAKE_LIMIT <= y && y < ylim) 273 273 { 274 /* We have a good enough best diagonal ;275 now insist that it end with a significant snake. */ 274 /* We have a good enough best diagonal. 275 now insist that it end with a significant snake. */ 276 276 int k; 277 277 … … 305 305 && yoff < y && y <= ylim - SNAKE_LIMIT) 306 306 { 307 /* We have a good enough best diagonal ;308 now insist that it end with a significant snake. */ 307 /* We have a good enough best diagonal. 308 now insist that it end with a significant snake. */ 309 309 int k; 310 310 … … 363 363 int d = diag (xoff, xlim, yoff, ylim); 364 364 int c = cost; 365 //int f = fdiag[fdiagoff + d];366 365 int b = bdiag[bdiagoff + d]; 367 366 -
trunk/src/org/openstreetmap/josm/tools/Geometry.java
r6246 r6296 498 498 } 499 499 500 //order points so p1.lat <= p2.lat ;500 //order points so p1.lat <= p2.lat 501 501 if (newPoint.getEastNorth().getY() > oldPoint.getEastNorth().getY()) { 502 502 p1 = oldPoint;
Note:
See TracChangeset
for help on using the changeset viewer.
