- Timestamp:
- 2010-02-18T21:42:37+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java
r2957 r3019 55 55 * excepted deviation from an angle of 0, 90, 180, 360 degrees 56 56 * maximum value: 45 degrees 57 */ 58 private static final double TOLERANCE1 = Math.toRadians(35.); // within a way 59 private static final double TOLERANCE2 = Math.toRadians(35.); // ways relative to each other 57 * 58 * Current policy is to except just everything, no matter how strange the result would be. 59 */ 60 private static final double TOLERANCE1 = Math.toRadians(45.); // within a way 61 private static final double TOLERANCE2 = Math.toRadians(45.); // ways relative to each other 60 62 61 63 /**
Note:
See TracChangeset
for help on using the changeset viewer.