summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-02-17 22:40:47 +0100
committerSven Gothel <[email protected]>2023-02-17 22:40:47 +0100
commit3d2b65bd43d5abb1acf59754ee325c25b8c299ff (patch)
treef3476af10005911bb68f2657e5635a26bd08710c /src/jogl/classes/com
parent0f86f8fc54855b6453e5c270b3480632f3a401d1 (diff)
Rename VectorUtil.ccw(..) -> isCCW(..)
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java5
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;
}