- Timestamp:
- 2016-11-08T23:42:13+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/draw/MapViewPath.java
r11154 r11225 235 235 * @since 11147 236 236 */ 237 @FunctionalInterface 237 238 public interface PathSegmentConsumer { 238 239 … … 256 257 257 258 private MapViewPoint cursor; 258 private boolean cursorIsActive = false;259 private boolean cursorIsActive; 259 260 260 261 /** … … 339 340 340 341 double distance = Math.sqrt(distanceSq); 341 double offset = ( (strokeProgress + distance)) % strokeLength;342 double offset = (strokeProgress + distance) % strokeLength; 342 343 if (offset < 0.01) { 343 344 return entry;
Note:
See TracChangeset
for help on using the changeset viewer.