diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/Distance.java @ 3246:229e9b27ce15

New Distance helper module. flys-artifacts/trunk@4879 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Fri, 06 Jul 2012 09:34:51 +0000
parents
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 Jul 06 09:34:51 2012 +0000
@@ -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