Allow the center to be set without creating a

new Vector3f first.
experimental
pspeed42 10 years ago
parent 97b8cb7435
commit 28adc784a9
  1. 4
      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.

Loading…
Cancel
Save