diff options
author | Sven Gothel <[email protected]> | 2014-07-03 16:21:36 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-07-03 16:21:36 +0200 |
commit | 556d92b63555a085b25e32b1cd55afce24edd07a (patch) | |
tree | 6be2b02c62a77d5aba81ffbe34c46960608be163 /src/jogl/classes/com/jogamp/opengl/math/Binary16.java | |
parent | a90f4a51dffec3247278e3c683ed4462b1dd9ab5 (diff) |
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74)
- Change non static accesses to static members using declaring type
- Change indirect accesses to static members to direct accesses (accesses through subtypes)
- Add final modifier to private fields
- Add final modifier to method parameters
- Add final modifier to local variables
- Remove unnecessary casts
- Remove unnecessary '$NON-NLS$' tags
- Remove trailing white spaces on all lines
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/math/Binary16.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/math/Binary16.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/Binary16.java b/src/jogl/classes/com/jogamp/opengl/math/Binary16.java index 33add46c2..8e4aa9176 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/Binary16.java +++ b/src/jogl/classes/com/jogamp/opengl/math/Binary16.java @@ -151,7 +151,7 @@ public final class Binary16 * the interval of double precision values is far larger than that of the * <code>binary16</code> type. * </p> - * + * * @see #unpackDouble(char) */ @@ -224,7 +224,7 @@ public final class Binary16 * the interval of single precision values is far larger than that of the * <code>binary16</code> type. * </p> - * + * * @see #unpackFloat(char) */ @@ -280,7 +280,7 @@ public final class Binary16 * range <code>[-15, 16]</code> - values outside of this range will be * truncated. * </p> - * + * * @see #unpackGetExponentUnbiased(char) */ @@ -298,7 +298,7 @@ public final class Binary16 * Encode the significand <code>s</code>. Values should be in the range * <code>[0, 1023]</code>. Values outside of this range will be truncated. * </p> - * + * * @see #unpackGetSignificand(char) */ @@ -315,7 +315,7 @@ public final class Binary16 * <code>[0, 1]</code>, with <code>0</code> ironically denoting a positive * value. Values outside of this range will be truncated. * </p> - * + * * @see #unpackGetSign(char) */ @@ -369,7 +369,7 @@ public final class Binary16 * <code>k</code>, and the decoded significand <code>s</code> of * <code>k</code>.</li> * </ul> - * + * * @see #packDouble(double) */ @@ -405,7 +405,7 @@ public final class Binary16 /** * 1. Bias the exponent. - * + * * 2. Shift the result left to the position at which it will appear in the * resulting value. */ @@ -443,7 +443,7 @@ public final class Binary16 * <code>k</code>, and the decoded significand <code>s</code> of * <code>k</code>.</li> * </ul> - * + * * @see #packFloat(float) */ @@ -479,7 +479,7 @@ public final class Binary16 /** * 1. Bias the exponent. - * + * * 2. Shift the result left to the position at which it will appear in the * resulting value. */ @@ -522,7 +522,7 @@ public final class Binary16 * <code>16</code> iff the input is {@link #POSITIVE_INFINITY}, * {@link #NEGATIVE_INFINITY}, or <code>NaN</code>.</li> * </ul> - * + * * @see #packSetExponentUnbiasedUnchecked(int) */ @@ -537,7 +537,7 @@ public final class Binary16 /** * Retrieve the sign bit of the given packed <code>binary16</code> value, as * an integer in the range <code>[0, 1]</code>. - * + * * @see Binary16#packSetSignUnchecked(int) */ @@ -552,7 +552,7 @@ public final class Binary16 * Return the significand of the given packed <code>binary16</code> value as * an integer in the range <code>[0, 1023]</code>. * </p> - * + * * @see Binary16#packSetSignificandUnchecked(int) */ |