aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/math/FloatUtil.java
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-02-14 19:29:35 +0100
committerSven Göthel <[email protected]>2024-02-14 19:29:35 +0100
commitb5a3a3d53dfbf1d9681ec288eaf788f9f058ba98 (patch)
tree5081e57415a1c36bb81f030119a4a1e345cdc018 /src/jogl/classes/com/jogamp/math/FloatUtil.java
parent572688e736f22e5b23e2b3b19ba9d37770e8508c (diff)
DoubleUtil: Align Epsilon ops w/ FloatUtil
Diffstat (limited to 'src/jogl/classes/com/jogamp/math/FloatUtil.java')
-rw-r--r--src/jogl/classes/com/jogamp/math/FloatUtil.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jogl/classes/com/jogamp/math/FloatUtil.java b/src/jogl/classes/com/jogamp/math/FloatUtil.java
index 94182baec..4ca706457 100644
--- a/src/jogl/classes/com/jogamp/math/FloatUtil.java
+++ b/src/jogl/classes/com/jogamp/math/FloatUtil.java
@@ -1454,7 +1454,7 @@ public final class FloatUtil {
}
/**
- * Return true if both values are equal, i.e. their absolute delta < {@link #EPSILON}.
+ * Returns true if both values are equal, i.e. their absolute delta < {@link #EPSILON}.
* <p>
* Implementation considers following corner cases:
* <ul>
@@ -1475,7 +1475,7 @@ public final class FloatUtil {
}
/**
- * Return true if both values are equal, i.e. their absolute delta < {@link #EPSILON}.
+ * Returns true if both values are equal, i.e. their absolute delta < {@link #EPSILON}.
* <p>
* Implementation does not consider corner cases like {@link #isEqual(float, float, float)}.
* </p>
@@ -1486,7 +1486,7 @@ public final class FloatUtil {
}
/**
- * Return true if both values are equal w/o regarding an epsilon.
+ * Returns true if both values are equal w/o regarding an epsilon.
* <p>
* Implementation considers following corner cases:
* <ul>
@@ -1563,7 +1563,7 @@ public final class FloatUtil {
}
/**
- * Return true if value is zero, i.e. it's absolute value < {@link #EPSILON}.
+ * Returns true if value is zero, i.e. it's absolute value < {@link #EPSILON}.
* @see #EPSILON
*/
public static boolean isZero(final float a) {