Lines Matching refs:Geometry
21 import com.jme3.scene.Geometry;
49 Geometry floorGeometry = new Geometry("Floor", floorBox);
62 Geometry boxGeometry = new Geometry("Box", box);
65 //RigidBodyControl automatically uses box collision shapes when attached to single geometry with box mesh
73 Geometry sphereGeometry = new Geometry("Sphere", sphere);
91 Geometry floorGeometry = new Geometry("Floor", floorBox);
104 Geometry ballGeometry = new Geometry("Soccer ball", sphere);
107 //RigidBodyControl automatically uses Sphere collision shapes when attached to single geometry with sphere mesh
116 Geometry boxGeometry = new Geometry("Box", box);
126 * creates a box geometry with a RigidBodyControl
130 public static Geometry createPhysicsTestBox(AssetManager assetManager) {
134 Geometry boxGeometry = new Geometry("Box", box);
136 //RigidBodyControl automatically uses box collision shapes when attached to single geometry with box mesh
142 * creates a sphere geometry with a RigidBodyControl
146 public static Geometry createPhysicsTestSphere(AssetManager assetManager) {
150 Geometry boxGeometry = new Geometry("Sphere", sphere);
152 //RigidBodyControl automatically uses sphere collision shapes when attached to single geometry with sphere mesh
189 Geometry bulletg = new Geometry("bullet", bullet);