diff options
author | Sven Gothel <[email protected]> | 2023-03-19 06:11:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-19 06:11:35 +0100 |
commit | 603068a4e6af5293db10db73ead3a83b7a74af34 (patch) | |
tree | de6097189acfe6efe0e5ff51a9b9803bb7d91c56 /src/jogl/classes/com/jogamp/opengl/math/geom | |
parent | f8584748e33aab56780eca5cf7009a5a0d11991d (diff) |
API doc cleanup, add + refine math tests
API doc
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/math/geom')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java b/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java index 5a14406b0..f858b1c0d 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java +++ b/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java @@ -596,6 +596,7 @@ public class AABBox { * @param size a constant float value * @param tmpV3 caller provided temporary 3-component vector * @return this AABBox for chaining + * @see #scale2(float, float[]) */ public final AABBox scale(final float size, final float[] tmpV3) { tmpV3[0] = high[0] - center[0]; @@ -622,6 +623,7 @@ public class AABBox { * @param size a constant float value * @param tmpV3 caller provided temporary 3-component vector * @return this AABBox for chaining + * @see #scale(float, float[]) */ public final AABBox scale2(final float size, final float[] tmpV3) { VectorUtil.scaleVec3(high, high, size); // in-place scale |