Home | History | Annotate | Download | only in bounding

Lines Matching refs:center

78     protected Vector3f center = new Vector3f();

83 public BoundingVolume(Vector3f center) {
84 this.center.set(center);
192 return center;
196 store.set(center);
201 center.set(newCenter);
205 * Find the distance from the center of this Bounding Volume to the given
213 return center.distance(point);
217 * Find the squared distance from the center of this Bounding Volume to the
225 return center.distanceSquared(point);
313 clone.center = center.clone();
321 e.getCapsule(this).write(center, "center", Vector3f.ZERO);
325 center = (Vector3f) e.getCapsule(this).readSavable("center", Vector3f.ZERO.clone());