diff options
-rw-r--r-- | src/classes/share/javax/media/j3d/PickPoint.java | 2 | ||||
-rw-r--r-- | src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/classes/share/javax/media/j3d/PickPoint.java b/src/classes/share/javax/media/j3d/PickPoint.java index 074233b..fc1268c 100644 --- a/src/classes/share/javax/media/j3d/PickPoint.java +++ b/src/classes/share/javax/media/j3d/PickPoint.java @@ -53,7 +53,7 @@ public final class PickPoint extends PickShape { /** * Gets the position of this PickPoint. - * @return the current pick point. + * @param location returns the current pick point. */ public void get(Point3d location) { location.x = this.location.x; diff --git a/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java b/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java index e5f3ff9..5d6fd31 100644 --- a/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java +++ b/src/classes/share/javax/media/j3d/RotPosScalePathInterpolator.java @@ -110,7 +110,7 @@ public class RotPosScalePathInterpolator extends PathInterpolator { /** * Retrieves the quat value at the specified index. * @param index the index of the value requested - * @return the interpolator's quat value at the index + * @param quat returns the interpolator's quat value at the index */ public void getQuat(int index, Quat4f quat) { quat.set(this.quats[index]); @@ -131,7 +131,7 @@ public class RotPosScalePathInterpolator extends PathInterpolator { /** * Retrieves the position value at the specified index. * @param index the index of the value requested - * @return the interpolator's position value at the index + * @param position returns the interpolator's position value at the index */ public void getPosition(int index, Point3f position) { position.set(this.positions[index]); |