HomeSort by relevance Sort by last modified time
    Searched defs:geom (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java 72 Geometry geom = TextureAtlas.makeAtlasBatch(scene, assetManager, 2048); local
82 rootNode.attachChild(geom);
86 box.setMaterial(geom.getMaterial());
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 58 Geometry geom = new Geometry("placeholder", box); local
59 geom.setMaterial(getPlaceholderMaterial(assetManager));
60 return geom;
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestReleaseDirectMemory.java 54 Geometry geom = new Geometry("Box", b); local
57 geom.setMaterial(mat);
58 rootNode.attachChild(geom);
TestAppStateLifeCycle.java 61 Geometry geom = new Geometry("Box", b); local
64 geom.setMaterial(mat);
65 rootNode.attachChild(geom);
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloJME3.java 55 Geometry geom = new Geometry("Box", b); // create cube geometry from the shape local
59 geom.setMaterial(mat); // set the cube's material
60 rootNode.attachChild(geom); // make the cube appear in the scene
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestBox.java 51 Geometry geom = new Geometry("Box", b); local
54 geom.setMaterial(mat);
55 rootNode.attachChild(geom);
TestCylinder.java 52 Geometry geom = new Geometry("Cylinder", t); local
61 geom.setMaterial(mat);
63 rootNode.attachChild(geom);
TestExpandingTorus.java 17 private Geometry geom; field in class:TestExpandingTorus
27 geom = new Geometry("Torus", torus);
29 geom.setMaterial(mat);
30 rootNode.attachChild(geom);
TestCustomMesh.java 91 Geometry geom = new Geometry("OurMesh", m); local
94 geom.setMaterial(mat);
97 rootNode.attachChild(geom);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DebugShapeFactory.java 105 Geometry geom = new Geometry(); local
106 geom.setMesh(DebugShapeFactory.getDebugMesh(shape));
107 // geom.setLocalScale(shape.getScale());
108 geom.updateModelBound();
109 return geom;
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestTransparentCartoonEdge.java 37 Geometry geom = new Geometry("floor", q); local
39 geom.setMaterial(mat);
41 geom.rotate(-FastMath.HALF_PI, 0, 0);
42 geom.center();
43 geom.setShadowMode(ShadowMode.Receive);
44 rootNode.attachChild(geom);
TestTransparentSSAO.java 35 Geometry geom = new Geometry("floor", q); local
37 geom.setMaterial(mat);
39 geom.rotate(-FastMath.HALF_PI, 0, 0);
40 geom.center();
41 geom.setShadowMode(ShadowMode.Receive);
42 rootNode.attachChild(geom);
  /external/jmonkeyengine/engine/src/test/jme3test/niftygui/
TestNiftyGui.java 57 Geometry geom = new Geometry("Box", b); local
60 geom.setMaterial(mat);
61 rootNode.attachChild(geom);
TestNiftyToMesh.java 83 Geometry geom = new Geometry("Box", b); local
86 geom.setMaterial(mat);
87 rootNode.attachChild(geom);
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3DLoading.java 32 Geometry geom = new Geometry("Quad", q); local
48 geom.setMaterial(material);
50 rootNode.attachChild(geom);
TestTextureArray.java 72 Geometry geom = new Geometry("Mesh", m); local
73 geom.setMaterial(mat);
74 rootNode.attachChild(geom);
  /external/grub/stage2/
common.c 260 struct geometry geom; local
265 if (get_diskinfo (drive, &geom))
281 info->drive_mode = ((geom.flags & BIOSDISK_FLAG_LBA_EXTENSION)
283 info->drive_cylinders = geom.cylinders;
284 info->drive_heads = geom.heads;
285 info->drive_sectors = geom.sectors;
325 struct geometry geom; local
328 if (get_diskinfo (boot_drive, &geom)
329 || ! (geom.flags & BIOSDISK_FLAG_CDROM))
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
TestSafeCanvas.java 63 Geometry geom = new Geometry("Box", b); local
66 geom.setMaterial(mat);
67 rootNode.attachChild(geom);
TestAwtPanels.java 78 Geometry geom = new Geometry("Box", b); local
81 geom.setMaterial(mat);
82 rootNode.attachChild(geom);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 35 Geometry geom = new Geometry("box", box); local
36 geom.setMaterial(assetManager.loadMaterial("Textures/Terrain/BrickWall/BrickWall.j3m"));
38 model.attachChild(geom);
TestSpatialAnim.java 35 Geometry geom = new Geometry("box", box); local
36 geom.setMaterial(assetManager.loadMaterial("Textures/Terrain/BrickWall/BrickWall.j3m"));
38 model.attachChild(geom);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java 115 Geometry geom = new Geometry(); local
116 geom.setMesh(DebugShapeFactory.getDebugMesh(shape));
117 // geom.setLocalScale(shape.getScale());
118 geom.updateModelBound();
119 return geom;
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestTransparentShadow.java 69 Geometry geom = new Geometry("floor", q); local
71 geom.setMaterial(mat);
73 geom.rotate(-FastMath.HALF_PI, 0, 0);
74 geom.center();
75 geom.setShadowMode(ShadowMode.Receive);
76 rootNode.attachChild(geom);
85 public void visit(Geometry geom) {
88 geom.addControl(lodCtrl);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
LodControl.java 126 Geometry geom = (Geometry) spatial; local
127 Mesh mesh = geom.getMesh();
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestSoftParticles.java 49 Geometry geom = new Geometry("Box", b); local
53 geom.setMaterial(mat);
54 rootNode.attachChild(geom);

Completed in 426 milliseconds

1 2 3