Changeset 32918 in osm for applications/editors


Ignore:
Timestamp:
2016-09-03T21:56:18+02:00 (8 years ago)
Author:
donvip
Message:

see #josm13528 - add debug log

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/splinex/src/org/openstreetmap/josm/plugins/Splinex/SplineHitTest.java

    r32547 r32918  
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.plugins.Splinex;
     3
     4import org.openstreetmap.josm.Main;
    35
    46public class SplineHitTest {
     
    2426
    2527    public boolean checkCurve(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4) {
     28        if (Main.isDebugEnabled()) {
     29            Main.debug("checkCurve {0} {1} {2} {3} {4} {5} {6} {7}", x1, y1, x2, y2, x3, y3, x4, y4);
     30        }
    2631        //chkCnt++;
    2732        double dx = x4 - x1;
Note: See TracChangeset for help on using the changeset viewer.