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

  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 73 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
89 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
99 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
107 ((CompoundShape) cShape).removeChildShape(shape.getCShape());
CollisionShape.java 71 public com.bulletphysics.collision.shapes.CollisionShape getCShape() {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsCharacter.java 80 if (!(shape.getCShape() instanceof ConvexShape)) {
93 gObject.setCollisionShape(collisionShape.getCShape());
95 character = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight);
182 if (!(collisionShape.getCShape() instanceof ConvexShape)) {
189 gObject.setCollisionShape(collisionShape.getCShape());
280 character = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight);
PhysicsGhostObject.java 89 gObject.setCollisionShape(collisionShape.getCShape());
99 gObject.setCollisionShape(collisionShape.getCShape());
PhysicsRigidBody.java 124 constructionInfo = new RigidBodyConstructionInfo(mass, motionState, collisionShape.getCShape(), localInertia);
127 constructionInfo.collisionShape = collisionShape.getCShape();
529 constructionInfo.collisionShape = collisionShape.getCShape();
530 rBody.setCollisionShape(collisionShape.getCShape());
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java 124 if (shape.getCShape() instanceof ConvexShape) {
126 mesh.setBuffer(Type.Position, 3, getVertices((ConvexShape) shape.getCShape()));
128 } else if (shape.getCShape() instanceof ConcaveShape) {
130 mesh.setBuffer(Type.Position, 3, getVertices((ConcaveShape) shape.getCShape()));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java 693 if (!(shape.getCShape() instanceof ConvexShape)) {
697 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results));
709 if (!(shape.getCShape() instanceof ConvexShape)) {
713 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results));
    [all...]

Completed in 69 milliseconds