Lines Matching refs:scene
44 import com.jme3.scene.Geometry;
45 import com.jme3.scene.Mesh;
46 import com.jme3.scene.Node;
47 import com.jme3.scene.Spatial;
48 import com.jme3.scene.debug.WireBox;
63 private static List<Geometry> getGeometries(Spatial scene){
64 if (scene instanceof Geometry){
66 geomList.add((Geometry) scene);
68 }else if (scene instanceof Node){
69 Node n = (Node) scene;
76 throw new UnsupportedOperationException("Unsupported scene element class");
80 public Octree(Spatial scene, int minTrisPerNode){
81 scene.updateGeometricState();
83 List<Geometry> geomsList = getGeometries(scene);
116 public Octree(Spatial scene){
117 this(scene,11);