Home | History | Annotate | Download | only in bounding

Lines Matching defs:BoundingBox

51  * <code>BoundingBox</code> defines an axis-aligned cube that defines a

60 * @version $Id: BoundingBox.java,v 1.50 2007/09/22 16:46:35 irrisor Exp $
62 public class BoundingBox extends BoundingVolume {
67 * Default constructor instantiates a new <code>BoundingBox</code>
70 public BoundingBox() {
74 * Contstructor instantiates a new <code>BoundingBox</code> object with
77 public BoundingBox(Vector3f c, float x, float y, float z) {
84 public BoundingBox(BoundingBox source) {
91 public BoundingBox(Vector3f min, Vector3f max) {
272 BoundingBox box;
274 box = new BoundingBox();
276 box = (BoundingBox) store;
304 BoundingBox box;
306 box = new BoundingBox();
308 box = (BoundingBox) store;
374 BoundingBox vBox = (BoundingBox) volume;
376 vBox.zExtent, new BoundingBox(new Vector3f(0, 0, 0), 0,
383 vSphere.radius, new BoundingBox(new Vector3f(0, 0, 0),
389 // BoundingBox rVal = (BoundingBox) this.clone(null);
414 BoundingBox vBox = (BoundingBox) volume;
441 // private BoundingBox mergeOBB(OrientedBoundingBox volume) {
493 private BoundingBox merge(Vector3f boxCenter, float boxX, float boxY,
494 float boxZ, BoundingBox rVal) {
536 * <code>clone</code> creates a new BoundingBox object containing the same
542 * @return the new BoundingBox
546 BoundingBox rVal = (BoundingBox) store;
555 BoundingBox rVal = new BoundingBox(center.clone(),
608 * @see BoundingVolume#intersectsBoundingBox(com.jme3.bounding.BoundingBox)
610 public boolean intersectsBoundingBox(BoundingBox bb) {