Searched refs:halfExtents (Results 1 - 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCylinderCollisionShape.java49 protected Vector3f halfExtents; field in class:CylinderCollisionShape
57 * @param halfExtents the halfextents to use
59 public CylinderCollisionShape(Vector3f halfExtents) { argument
60 this.halfExtents = halfExtents;
67 * @param halfExtents the halfextents to use
70 public CylinderCollisionShape(Vector3f halfExtents, int axis) { argument
71 this.halfExtents = halfExtents;
77 return halfExtents;
119 createShape(int axis, Vector3f halfExtents) argument
[all...]
H A DBoxCollisionShape.java49 private Vector3f halfExtents; field in class:BoxCollisionShape
55 * creates a collision box from the given halfExtents
56 * @param halfExtents the halfExtents of the CollisionBox
58 public BoxCollisionShape(Vector3f halfExtents) { argument
59 this.halfExtents = halfExtents;
64 return halfExtents;
70 capsule.write(halfExtents, "halfExtents", ne
89 createShape(Vector3f halfExtents) argument
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DBoxCollisionShape.java49 private Vector3f halfExtents; field in class:BoxCollisionShape
55 * creates a collision box from the given halfExtents
56 * @param halfExtents the halfExtents of the CollisionBox
58 public BoxCollisionShape(Vector3f halfExtents) { argument
59 this.halfExtents = halfExtents;
64 return halfExtents;
70 capsule.write(halfExtents, "halfExtents", ne
[all...]
H A DCylinderCollisionShape.java51 protected Vector3f halfExtents; field in class:CylinderCollisionShape
59 * @param halfExtents the halfextents to use
61 public CylinderCollisionShape(Vector3f halfExtents) { argument
62 this.halfExtents = halfExtents;
69 * @param halfExtents the halfextents to use
72 public CylinderCollisionShape(Vector3f halfExtents, int axis) { argument
73 this.halfExtents = halfExtents;
79 return halfExtents;
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_BoxCollisionShape.cpp49 (JNIEnv *env, jobject object, jobject halfExtents) {
52 jmeBulletUtil::convert(env, halfExtents, &extents);
48 Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape(JNIEnv *env, jobject object, jobject halfExtents) argument
H A Dcom_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jobject halfExtents) {
52 jmeBulletUtil::convert(env, halfExtents, &extents);
48 Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jobject halfExtents) argument
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestGhostObject.java105 Vector3f halfExtents = new Vector3f(3, 4.2f, 1);
106 ghostControl = new GhostControl(new BoxCollisionShape(halfExtents));

Completed in 512 milliseconds