diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/Distance.java @ 3318:dbe2f85bf160

merged flys-artifacts/2.8
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:35 +0200
parents 229e9b27ce15
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/Distance.java	Fri Sep 28 12:14:35 2012 +0200
@@ -0,0 +1,15 @@
+package de.intevation.flys.artifacts.math;
+
+/** Helper to calculate distance(s). */
+public final class Distance {
+    /** Return distance between two values. */
+    public static double distance(double a, double b) {
+        return Math.abs(a - b);
+    }
+
+    /** Return whether a and be are within a certain distance. */
+    public static boolean within(double a, double b, double threshold) {
+        return distance(a, b) <= threshold;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org