HomeSort by relevance Sort by last modified time
    Searched full:rootnode (Results 51 - 75 of 334) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAssets.java 60 rootNode.attachChild(teapot);
69 rootNode.attachChild(wall);
85 rootNode.attachChild(ninja);
89 rootNode.addLight(sun);
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestLightNode.java 77 rootNode.attachChild(g);
84 rootNode.attachChild(movingNode);
89 rootNode.addLight(pl);
97 rootNode.addLight(dl);
TestLightRadius.java 76 rootNode.attachChild(g);
80 rootNode.attachChild(lightMdl);
85 rootNode.addLight(pl);
90 rootNode.addLight(dl);
TestSimpleLighting.java 82 rootNode.attachChild(teapot);
87 rootNode.attachChild(lightMdl);
92 rootNode.addLight(pl);
97 rootNode.addLight(dl);
TestEnvironmentMapping.java 49 rootNode.attachChild(buggy);
50 rootNode.attachChild(SkyFactory.createSky(assetManager, tex, false));
TestTransparentShadow.java 76 rootNode.attachChild(geom);
94 rootNode.addLight(al);
99 rootNode.addLight(dl1);
104 rootNode.addLight(dl);
106 rootNode.attachChild(teaGeom);
128 rootNode.attachChild(fire);
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestNormalMapping.java 67 rootNode.attachChild(sphere);
71 rootNode.attachChild(lightMdl);
76 rootNode.addLight(pl);
81 // rootNode.addLight(dl);
TestSimpleBumps.java 67 rootNode.attachChild(sphere);
71 rootNode.attachChild(lightMdl);
76 rootNode.addLight(pl);
81 // rootNode.addLight(dl);
  /external/jmonkeyengine/engine/src/test/jme3test/model/
TestHoverTank.java 72 rootNode.attachChild(tank);
84 rootNode.addLight(dl);
85 rootNode.addLight(dl2);
86 rootNode.attachChild(tank);
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestBillboard.java 83 rootNode.attachChild(n);
89 rootNode.attachChild(n2);
92 // rootNode.attachChild(bb);
93 // rootNode.attachChild(g2);
  /external/jmonkeyengine/engine/src/test/jme3test/stress/
TestBatchLod.java 58 rootNode.addLight(dl);
79 rootNode.attachChild(clonePot);
82 GeometryBatchFactory.optimize(rootNode, true);
84 rootNode.getChild(0).addControl(control);
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java 75 rootNode.addLight(al);
80 rootNode.addLight(sun);
82 rootNode.attachChild(geom);
88 rootNode.attachChild(box);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
  /packages/apps/Mms/src/com/android/mms/dom/
NodeListImpl.java 39 * @param rootNode The root <code>Node</code> of the search.
42 * @param deep Limit the search to the direct children of rootNode if false,
45 public NodeListImpl(Node rootNode, String tagName, boolean deepSearch) {
46 mRootNode = rootNode;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClassNodeList.cpp 38 ClassNodeList::ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames)
39 : LiveNodeList(rootNode, ClassNodeListType, InvalidateOnClassAttrChange)
Traversal.cpp 33 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> nodeFilter)
34 : m_root(rootNode)
TreeWalker.h 40 static PassRefPtr<TreeWalker> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter)
42 return adoptRef(new TreeWalker(rootNode, whatToShow, filter));
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestEverything.java 96 rootNode.attachChild(SkyFactory.createSky(assetManager, envMap, new Vector3f(-1,-1,-1), true));
112 rootNode.addLight(dl);
121 rootNode.addLight(dl);
136 rootNode.attachChild(floorGeom);
153 // rootNode.attachChild(t);
168 rootNode.attachChild(model);
179 rootNode.attachChild(signpost);
191 rootNode.setCullHint(CullHint.Never);
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestMultiViewsFilters.java 68 rootNode.addLight(dl);
69 rootNode.attachChild(teaGeom);
84 view2.attachScene(rootNode);
95 view3.attachScene(rootNode);
108 view4.attachScene(rootNode);
125 view5.attachScene(rootNode);
129 rootNode.attachChild(SkyFactory.createSky(assetManager, "Textures/Sky/Bright/BrightSky.dds", false));
138 // fpp.addFilter(new WaterFilter(rootNode, Vector3f.UNIT_Y.mult(-1)));
TestPostFilters.java 88 rootNode.attachChild(SkyFactory.createSky(assetManager, envMap, new Vector3f(-1, -1, -1), true));
98 rootNode.addLight(dl);
105 rootNode.addLight(dl);
119 rootNode.attachChild(floorGeom);
130 rootNode.attachChild(signpost);
142 rootNode.setCullHint(CullHint.Never);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestSimplePhysics.java 67 rootNode.attachChild(physicsSphere);
73 rootNode.attachChild(physicsSphere2);
80 rootNode.attachChild(physicsBox);
86 rootNode.attachChild(physicsCylinder);
92 rootNode.attachChild(node2);
98 rootNode.attachChild(node3);
TestGhostObject.java 75 rootNode.attachChild(physicsBox);
81 rootNode.attachChild(physicsBox1);
87 rootNode.attachChild(physicsBox2);
94 rootNode.attachChild(node);
109 rootNode.attachChild(node);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 81 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) {
82 for (Spatial spatial : rootNode.getChildren()) {
133 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) {
134 return createCompoundShape(rootNode, rootNode, shape, meshAccurate, false);
142 private static CompoundCollisionShape createMeshCompoundShape(Node rootNode) {
143 return createCompoundShape(rootNode, new CompoundCollisionShape(), true);
149 * @param rootNode
152 private static CompoundCollisionShape createBoxCompoundShape(Node rootNode) {
153 return createCompoundShape(rootNode, new CompoundCollisionShape(), false)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
SimpleApplication.java 74 protected Node rootNode = new Node("Root Node");
155 * Retrieves rootNode
156 * @return rootNode Node object
160 return rootNode;
185 viewPort.attachScene(rootNode);
238 rootNode.updateLogicalState(tpf);
241 rootNode.updateGeometricState();

Completed in 549 milliseconds

1 23 4 5 6 7 8 91011>>