Skip to content

Commit 16b2c58

Browse files
committed
jme3-core: javadoc improvements
1 parent ff2df9e commit 16b2c58

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-2020 jMonkeyEngine
2+
* Copyright (c) 2009-2021 jMonkeyEngine
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -532,8 +532,8 @@ public static float atan(float fValue) {
532532
/**
533533
* A direct call to Math.atan2.
534534
*
535-
* @param fY
536-
* @param fX
535+
* @param fY ordinate
536+
* @param fX abscissa
537537
* @return Math.atan2(fY,fX)
538538
* @see java.lang.Math#atan2(double, double)
539539
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ public Vector3f setZ(float z) {
11701170
}
11711171

11721172
/**
1173-
* @param index
1173+
* @param index 0, 1, or 2
11741174
* @return x value if index == 0, y value if index == 1 or z value if index == 2
11751175
* @throws IllegalArgumentException
11761176
* if index is not one of 0, 1, 2.

0 commit comments

Comments
 (0)