Skip to content

Commit f136321

Browse files
authored
FastMath: restore previous code format
1 parent b82a0d4 commit f136321

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

jme3-core/src/main/java/com/jme3/math/FastMath.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public static float interpolateLinear(float scale, float startValue, float endVa
174174
* @return The interpolated value between startValue and endValue.
175175
*/
176176
public static Vector3f interpolateLinear(float scale, Vector3f startValue,
177-
Vector3f endValue, Vector3f store) {
177+
Vector3f endValue, Vector3f store) {
178178
if (store == null) {
179179
store = new Vector3f();
180180
}
@@ -231,7 +231,7 @@ public static float extrapolateLinear(float scale, float startValue, float endVa
231231
* @return an extrapolation for the given parameters
232232
*/
233233
public static Vector3f extrapolateLinear(float scale, Vector3f startValue,
234-
Vector3f endValue, Vector3f store) {
234+
Vector3f endValue, Vector3f store) {
235235
if (store == null) {
236236
store = new Vector3f();
237237
}
@@ -307,7 +307,7 @@ public static float interpolateCatmullRom(float u, float T, float p0, float p1,
307307
* @return Catmull–Rom interpolation
308308
*/
309309
public static Vector3f interpolateCatmullRom(float u, float T, Vector3f p0,
310-
Vector3f p1, Vector3f p2, Vector3f p3, Vector3f store) {
310+
Vector3f p1, Vector3f p2, Vector3f p3, Vector3f store) {
311311
if (store == null) {
312312
store = new Vector3f();
313313
}
@@ -336,7 +336,7 @@ public static Vector3f interpolateCatmullRom(float u, float T, Vector3f p0,
336336
* @return Catmull–Rom interpolation
337337
*/
338338
public static Vector3f interpolateCatmullRom(float u, float T, Vector3f p0,
339-
Vector3f p1, Vector3f p2, Vector3f p3) {
339+
Vector3f p1, Vector3f p2, Vector3f p3) {
340340
return interpolateCatmullRom(u, T, p0, p1, p2, p3, null);
341341
}
342342

@@ -385,7 +385,7 @@ public static float interpolateBezier(float u, float p0, float p1, float p2, flo
385385
* @return Bezier interpolation
386386
*/
387387
public static Vector3f interpolateBezier(float u, Vector3f p0, Vector3f p1,
388-
Vector3f p2, Vector3f p3, Vector3f store) {
388+
Vector3f p2, Vector3f p3, Vector3f store) {
389389
if (store == null) {
390390
store = new Vector3f();
391391
}
@@ -429,7 +429,7 @@ public static Vector3f interpolateBezier(float u, Vector3f p0, Vector3f p1, Vect
429429
* @return the length of the segment
430430
*/
431431
public static float getCatmullRomP1toP2Length(Vector3f p0, Vector3f p1,
432-
Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) {
432+
Vector3f p2, Vector3f p3, float startRange, float endRange, float curveTension) {
433433

434434
float epsilon = 0.001f;
435435
float middleValue = (startRange + endRange) * 0.5f;
@@ -824,9 +824,9 @@ public static Vector3f computeNormal(Vector3f v1, Vector3f v2, Vector3f v3) {
824824
* @return the determinant
825825
*/
826826
public static float determinant(double m00, double m01, double m02,
827-
double m03, double m10, double m11, double m12, double m13,
828-
double m20, double m21, double m22, double m23, double m30,
829-
double m31, double m32, double m33) {
827+
double m03, double m10, double m11, double m12, double m13,
828+
double m20, double m21, double m22, double m23, double m30,
829+
double m31, double m32, double m33) {
830830

831831
double det01 = m20 * m31 - m21 * m30;
832832
double det02 = m20 * m32 - m22 * m30;

0 commit comments

Comments
 (0)