Home | History | Annotate | Download | only in shapes

Lines Matching refs:halfExtents

49     private Vector3f halfExtents;
55 * creates a collision box from the given halfExtents
56 * @param halfExtents the halfExtents of the CollisionBox
58 public BoxCollisionShape(Vector3f halfExtents) {
59 this.halfExtents = halfExtents;
64 return halfExtents;
70 capsule.write(halfExtents, "halfExtents", new Vector3f(1, 1, 1));
76 Vector3f halfExtents = (Vector3f) capsule.readSavable("halfExtents", new Vector3f(1, 1, 1));
77 this.halfExtents = halfExtents;
82 objectId = createShape(halfExtents);
84 // cShape = new BoxShape(Converter.convert(halfExtents));
89 private native long createShape(Vector3f halfExtents);