Home
last modified time | relevance | path

Searched refs:getCShape (Results 1 – 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsCharacter.java80 if (!(shape.getCShape() instanceof ConvexShape)) { in PhysicsCharacter()
93 gObject.setCollisionShape(collisionShape.getCShape()); in buildObject()
95 … = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight); in buildObject()
182 if (!(collisionShape.getCShape() instanceof ConvexShape)) { in setCollisionShape()
189 gObject.setCollisionShape(collisionShape.getCShape()); in setCollisionShape()
280 … = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight); in read()
DPhysicsRigidBody.java124 …nInfo = new RigidBodyConstructionInfo(mass, motionState, collisionShape.getCShape(), localInertia); in preRebuild()
127 constructionInfo.collisionShape = collisionShape.getCShape(); in preRebuild()
529 constructionInfo.collisionShape = collisionShape.getCShape(); in setCollisionShape()
530 rBody.setCollisionShape(collisionShape.getCShape()); in setCollisionShape()
DPhysicsGhostObject.java89 gObject.setCollisionShape(collisionShape.getCShape()); in buildObject()
99 gObject.setCollisionShape(collisionShape.getCShape()); in setCollisionShape()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DCompoundCollisionShape.java73 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShape()
89 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShape()
99 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShapeDirect()
107 ((CompoundShape) cShape).removeChildShape(shape.getCShape()); in removeChildShape()
DCollisionShape.java71 public com.bulletphysics.collision.shapes.CollisionShape getCShape() { in getCShape() method in CollisionShape
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DDebugShapeFactory.java124 if (shape.getCShape() instanceof ConvexShape) { in getDebugMesh()
126 mesh.setBuffer(Type.Position, 3, getVertices((ConvexShape) shape.getCShape())); in getDebugMesh()
128 } else if (shape.getCShape() instanceof ConcaveShape) { in getDebugMesh()
130 mesh.setBuffer(Type.Position, 3, getVertices((ConcaveShape) shape.getCShape())); in getDebugMesh()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
DPhysicsSpace.java693 if (!(shape.getCShape() instanceof ConvexShape)) { in sweepTest()
697 …dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans… in sweepTest()
709 if (!(shape.getCShape() instanceof ConvexShape)) { in sweepTest()
713 …dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans… in sweepTest()