Pārlūkot izejas kodu

Allow the center to be set without creating a
new Vector3f first.

pspeed42 11 gadi atpakaļ
vecāks
revīzija
28adc784a9

+ 4 - 0
jme3-core/src/main/java/com/jme3/bounding/BoundingVolume.java

@@ -195,6 +195,10 @@ public abstract class BoundingVolume implements Savable, Cloneable, Collidable {
         center.set(newCenter);
     }
 
+    public final void setCenter(float x, float y, float z) {
+        center.set(x, y, z);
+    }
+
     /**
      * Find the distance from the center of this Bounding Volume to the given
      * point.