Ticket #17680: 17680.patch
| File 17680.patch, 988 bytes (added by , 7 years ago) |
|---|
-
src/org/openstreetmap/josm/tools/Geometry.java
87 87 * Prerequisite: no two nodes have the same coordinates. 88 88 * 89 89 * @param ways a list of ways to test 90 * @param test if false, do not build list of Commands, just return nodes90 * @param test if true, do not build list of Commands, just return nodes 91 91 * @param cmds list of commands, typically empty when handed to this method. 92 92 * Will be filled with commands that add intersection nodes to 93 93 * the ways. 94 * @return list of new nodes 94 * @return list of new nodes, if test is true the list might not contain all intersections 95 95 */ 96 96 public static Set<Node> addIntersections(List<Way> ways, boolean test, List<Command> cmds) { 97 97
