HomeSort by relevance Sort by last modified time
    Searched defs:compoundShape (Results 1 - 3 of 3) sorted by null

  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 104 CompoundCollisionShape compoundShape = new CompoundCollisionShape();
106 compoundShape.addChildShape(box, new Vector3f(0, 1, 0));
110 vehicle = new VehicleControl(compoundShape, 400);
TestAttachDriver.java 132 CompoundCollisionShape compoundShape = new CompoundCollisionShape();
134 compoundShape.addChildShape(box, new Vector3f(0, 1, 0));
138 vehicle = new VehicleControl(compoundShape, 800);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 147 * This type of collision shape creates a CompoundShape made out of boxes that
254 public static void shiftCompoundShapeContents(CompoundCollisionShape compoundShape, Vector3f vector) {
255 for (Iterator<ChildCollisionShape> it = new LinkedList(compoundShape.getChildren()).iterator(); it.hasNext();) {
260 compoundShape.removeChildShape(child);
261 compoundShape.addChildShape(child, location.add(vector), rotation);

Completed in 36 milliseconds