소스 검색

Joint: resolve 2 javadoc warnings

Stephen Gold 4 년 전
부모
커밋
278816557f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      jme3-core/src/main/java/com/jme3/anim/Joint.java

+ 2 - 1
jme3-core/src/main/java/com/jme3/anim/Joint.java

@@ -167,7 +167,7 @@ public class Joint implements Savable, JmeCloneable, HasLocalTransform {
      * have already been computed, otherwise this method will return undefined
      * results.
      *
-     * @param outTransform
+     * @param outTransform storage for the result (modified)
      */
     void getOffsetTransform(Matrix4f outTransform) {
         jointModelTransform.getOffsetTransform(outTransform, inverseModelBindMatrix);
@@ -358,6 +358,7 @@ public class Joint implements Savable, JmeCloneable, HasLocalTransform {
      * @param jointIndex this bone's index in its armature (≥0)
      * @param targets    a list of geometries animated by this bone's skeleton (not
      *                   null, unaffected)
+     * @return the attachments node (not null)
      */
     Node getAttachmentsNode(int jointIndex, SafeArrayList<Geometry> targets) {
         targetGeometry = null;