ソースを参照

fixed BoundingBox merge method javadoc

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9282 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
rem..om 13 年 前
コミット
732955a56c
1 ファイル変更4 行追加4 行削除
  1. 4 4
      engine/src/core/com/jme3/bounding/BoundingBox.java

+ 4 - 4
engine/src/core/com/jme3/bounding/BoundingBox.java

@@ -357,12 +357,12 @@ public class BoundingBox extends BoundingVolume {
     }
     }
 
 
     /**
     /**
-     * <code>merge</code> combines this sphere with a second bounding sphere.
-     * This new sphere contains both bounding spheres and is returned.
+     * <code>merge</code> combines this bounding box with a second bounding box.
+     * This new box contains both bounding box and is returned.
      * 
      * 
      * @param volume
      * @param volume
-     *            the sphere to combine with this sphere.
-     * @return the new sphere
+     *            the bounding box to combine with this bounding box.
+     * @return the new bounding box
      */
      */
     public BoundingVolume merge(BoundingVolume volume) {
     public BoundingVolume merge(BoundingVolume volume) {
         if (volume == null) {
         if (volume == null) {