Ignore:
Timestamp:
2017-11-10T01:11:04+01:00 (6 years ago)
Author:
Don-vip
Message:

add some javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AlignInCircleAction.java

    r12641 r13106  
    8787        }
    8888
     89        /**
     90         * Converts this {@code PolarCoor} to an {@link EastNorth} instance.
     91         * @return a new {@code EastNorth} instance
     92         */
    8993        public EastNorth toEastNorth() {
    9094            return new EastNorth(radius * Math.cos(angle - azimuth) + origin.east(), radius * Math.sin(angle - azimuth)
Note: See TracChangeset for help on using the changeset viewer.