Changeset 6230 in josm for trunk/src/org/openstreetmap/josm/actions
- Timestamp:
- 2013-09-11T00:41:49+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AlignInCircleAction.java
r6130 r6230 38 38 public final class AlignInCircleAction extends JosmAction { 39 39 40 /** 41 * Constructs a new {@code AlignInCircleAction}. 42 */ 40 43 public AlignInCircleAction() { 41 44 super(tr("Align Nodes in Circle"), "aligncircle", tr("Move the selected nodes into a circle."), … … 151 154 // First calculate the average point 152 155 153 BigDecimal east = newBigDecimal(0);154 BigDecimal north = newBigDecimal(0);156 BigDecimal east = BigDecimal.ZERO; 157 BigDecimal north = BigDecimal.ZERO; 155 158 156 159 for (Node n : nodes) {
Note:
See TracChangeset
for help on using the changeset viewer.