OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:capsuleshape
(Results
1 - 8
of
8
) sorted by null
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CapsuleCollisionShape.java
34
import com.bulletphysics.collision.shapes.
CapsuleShape
;
64
CapsuleShape
capShape=new
CapsuleShape
(radius,height);
116
cShape=new
CapsuleShape
(radius,height);
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridSerializationTest.java
65
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(0.5f, 1.8f, 1);
66
player3 = new CharacterControl(
capsuleShape
, 0.5f);
TerrainGridTest.java
126
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(0.5f, 1.8f, 1);
127
player3 = new CharacterControl(
capsuleShape
, 0.5f);
TerrainGridTileLoaderTest.java
123
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(0.5f, 1.8f, 1);
124
player3 = new CharacterControl(
capsuleShape
, 0.5f);
TerrainGridAlphaMapTest.java
176
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(0.5f, 1.8f, 1);
177
player3 = new CharacterControl(
capsuleShape
, 0.5f);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CapsuleCollisionShape.java
117
// objectId=new
CapsuleShape
(radius,height);
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloCollision.java
102
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(1.5f, 6f, 1);
103
player = new CharacterControl(
capsuleShape
, 0.05f);
HelloTerrainCollision.java
160
CapsuleCollisionShape
capsuleShape
= new CapsuleCollisionShape(1.5f, 6f, 1);
161
player = new CharacterControl(
capsuleShape
, 0.05f);
Completed in 305 milliseconds