Changeset 32918 in osm for applications/editors
- Timestamp:
- 2016-09-03T21:56:18+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/splinex/src/org/openstreetmap/josm/plugins/Splinex/SplineHitTest.java
r32547 r32918 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.plugins.Splinex; 3 4 import org.openstreetmap.josm.Main; 3 5 4 6 public class SplineHitTest { … … 24 26 25 27 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 } 26 31 //chkCnt++; 27 32 double dx = x4 - x1;
Note:
See TracChangeset
for help on using the changeset viewer.