Ignore:
Timestamp:
2016-08-17T23:52:22+02:00 (8 years ago)
Author:
Don-vip
Message:

see #13306 - fix wrong version number

Location:
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java

    r10827 r10829  
    9898     * @param orderNumber The number of the segment in the way.
    9999     * @param clr The color to use for drawing the text.
    100      * @since 10826
     100     * @since 10827
    101101     */
    102102    protected void drawOrderNumber(MapViewPoint p1, MapViewPoint p2, int orderNumber, Color clr) {
     
    194194     * @param space The free space to check against.
    195195     * @return <code>true</code> if segment is larger than required space
    196      * @since 10826
     196     * @since 10827
    197197     */
    198198    public static boolean isLargeSegment(MapViewPoint p1, MapViewPoint p2, int space) {
     
    206206     * @param p2 Second point of the way segment.
    207207     * @return <code>true</code> if segment may be visible.
    208      * @since 10826
     208     * @since 10827
    209209     */
    210210    protected boolean isSegmentVisible(MapViewPoint p1, MapViewPoint p2) {
     
    219219     * @param path The path to append drawing to.
    220220     * @param w The ways to draw node for.
    221      * @since 10826
     221     * @since 10827
    222222     */
    223223    public void visitVirtual(Path2D path, Way w) {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/ArrowPaintHelper.java

    r10827 r10829  
    88 * This class helps with painting arrows with fixed length along a path.
    99 * @author Michael Zangl
    10  * @since 10826
     10 * @since 10827
    1111 */
    1212public class ArrowPaintHelper {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/LineClip.java

    r10827 r10829  
    2424     * @param p2 end point of the clipped line
    2525     * @param clipBounds Clip bounds
    26      * @since 10826
     26     * @since 10827
    2727     */
    2828    public LineClip(Point2D p1, Point2D p2, Rectangle2D clipBounds) {
     
    4646    /**
    4747     * @return start point of the clipped line
    48      * @since 10826
     48     * @since 10827
    4949     */
    5050    public Point2D getP1() {
     
    5454    /**
    5555     * @return end point of the clipped line
    56      * @since 10826
     56     * @since 10827
    5757     */
    5858    public Point2D getP2() {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPath2D.java

    r10827 r10829  
    99 * An extension of {@link Path2D} with special methods for map positions.
    1010 * @author Michael Zangl
    11  * @since 10826
     11 * @since 10827
    1212 */
    1313public class MapPath2D extends Path2D.Double {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/WireframeMapRenderer.java

    r10827 r10829  
    410410     * @param mv2 Second point of the way segment.
    411411     * @param showDirection <code>true</code> if segment direction should be indicated
    412      * @since 10826
     412     * @since 10827
    413413     */
    414414    protected void drawSegment(MapPath2D path, MapViewPoint mv1, MapViewPoint mv2, boolean showDirection) {
     
    431431     * @param col The color to use for drawing line.
    432432     * @param showDirection <code>true</code> if segment direction should be indicated.
    433      * @since 10826
     433     * @since 10827
    434434     */
    435435    protected void drawSegment(MapViewPoint p1, MapViewPoint p2, Color col, boolean showDirection) {
Note: See TracChangeset for help on using the changeset viewer.