From 47233ea7014e34adca8a5c1d2323a57e9de1c7fa Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sun, 3 Sep 2023 08:31:24 +0200 Subject: FloatUtil.isEqual(..): Rename raw {isEqual->isEqualRaw}(a,b) varianr w/o EPSILON; Add isEqual(a,b) w/ default EPSILON; Use it where applicable Also add isEqual2(a,b) w/o corner cases (NaN, Inf) used for comparison in Graph Outline, OutlineShape and later GraphUI Shape. --- src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java') diff --git a/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java b/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java index d3b2c3cfd..e38501c73 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java +++ b/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java @@ -51,6 +51,18 @@ public final class VectorUtil { FloatUtil.isZero(z, epsilon) ; } + /** + * Return true if all three vector components are zero, i.e. it's their absolute value < {@link FloatUtil#EPSILON}. + *

+ * Implementation uses {@link FloatUtil#isZero(float)}, see API doc for details. + *

+ */ + public static boolean isZero(final float x, final float y, final float z) { + return FloatUtil.isZero(x) && + FloatUtil.isZero(y) && + FloatUtil.isZero(z) ; + } + /** * Return the squared distance between the given two points described vector v1 and v2. *

-- cgit v1.2.3