HomeSort by relevance Sort by last modified time
    Searched refs:halfExtents (Results 1 - 7 of 7) sorted by null

  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CylinderCollisionShape.java 49 protected Vector3f halfExtents;
56 * creates a cylinder shape from the given halfextents
57 * @param halfExtents the halfextents to use
59 public CylinderCollisionShape(Vector3f halfExtents) {
60 this.halfExtents = halfExtents;
66 * Creates a cylinder shape around the given axis from the given halfextents
67 * @param halfExtents the halfextents to us
    [all...]
BoxCollisionShape.java 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))
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java 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))
    [all...]
CylinderCollisionShape.java 51 protected Vector3f halfExtents;
58 * creates a cylinder shape from the given halfextents
59 * @param halfExtents the halfextents to use
61 public CylinderCollisionShape(Vector3f halfExtents) {
62 this.halfExtents = halfExtents;
68 * Creates a cylinder shape around the given axis from the given halfextents
69 * @param halfExtents the halfextents to us
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_BoxCollisionShape.cpp 49 (JNIEnv *env, jobject object, jobject halfExtents) {
52 jmeBulletUtil::convert(env, halfExtents, &extents);
com_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp 49 (JNIEnv * env, jobject object, jint axis, jobject halfExtents) {
52 jmeBulletUtil::convert(env, halfExtents, &extents);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestGhostObject.java 105 Vector3f halfExtents = new Vector3f(3, 4.2f, 1);
106 ghostControl = new GhostControl(new BoxCollisionShape(halfExtents));

Completed in 120 milliseconds