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

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
H A DCollisionShapeFactory.java80 private static CompoundCollisionShape createCompoundShape(Node realRootNode,
81 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) {
132 private static CompoundCollisionShape createCompoundShape(
133 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) {
142 private static CompoundCollisionShape createMeshCompoundShape(Node rootNode) {
143 return createCompoundShape(rootNode, new CompoundCollisionShape(), true);
152 private static CompoundCollisionShape createBoxCompoundShape(Node rootNode) {
153 return createCompoundShape(rootNode, new CompoundCollisionShape(), false);
161 * @return A MeshCollisionShape or a CompoundCollisionShape with MeshCollisionShapes as children if the supplied spatial is a Node. A HeightieldCollisionShape if a TerrainQuad was supplied.
182 * @return A HullCollisionShape or a CompoundCollisionShape wit
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
H A DDebugShapeFactory.java35 import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
69 if (collisionShape instanceof CompoundCollisionShape) {
70 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape;
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java49 * A CompoundCollisionShape allows combining multiple base shapes
53 public class CompoundCollisionShape extends CollisionShape { class in inherits:CollisionShape
57 public CompoundCollisionShape() { method in class:CompoundCollisionShape
81 if(shape instanceof CompoundCollisionShape){
93 if(shape instanceof CompoundCollisionShape){
123 * WARNING - CompoundCollisionShape scaling has no effect.
127 Logger.getLogger(this.getClass().getName()).log(Level.WARNING, "CompoundCollisionShape cannot be scaled");
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java52 * A CompoundCollisionShape allows combining multiple base shapes
56 public class CompoundCollisionShape extends CollisionShape { class in inherits:CollisionShape
60 public CompoundCollisionShape() { method in class:CompoundCollisionShape
82 if(shape instanceof CompoundCollisionShape){
93 if(shape instanceof CompoundCollisionShape){
121 * WARNING - CompoundCollisionShape scaling has no effect.
125 Logger.getLogger(this.getClass().getName()).log(Level.WARNING, "CompoundCollisionShape cannot be scaled");
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
H A DDebugShapeFactory.java40 import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
78 if (collisionShape instanceof CompoundCollisionShape) {
79 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape;
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestPhysicsCar.java39 import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
104 CompoundCollisionShape compoundShape = new CompoundCollisionShape();
H A DTestAttachDriver.java40 import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
132 CompoundCollisionShape compoundShape = new CompoundCollisionShape();

Completed in 194 milliseconds