diff options
author | Sven Gothel <[email protected]> | 2023-02-17 22:40:47 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-17 22:40:47 +0100 |
commit | 3d2b65bd43d5abb1acf59754ee325c25b8c299ff (patch) | |
tree | f3476af10005911bb68f2657e5635a26bd08710c /src/jogl/classes/com | |
parent | 0f86f8fc54855b6453e5c270b3480632f3a401d1 (diff) |
Rename VectorUtil.ccw(..) -> isCCW(..)
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java b/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java index d7e72e245..a07153155 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java +++ b/src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java @@ -878,13 +878,14 @@ public final class VectorUtil { return false; } - /** Check if points are in ccw order + /** + * Check if points are in ccw order * @param a first vertex * @param b second vertex * @param c third vertex * @return true if the points a,b,c are in a ccw order */ - public static boolean ccw(final Vert2fImmutable a, final Vert2fImmutable b, final Vert2fImmutable c){ + public static boolean isCCW(final Vert2fImmutable a, final Vert2fImmutable b, final Vert2fImmutable c){ return triAreaVec2(a,b,c) > 0; } |