nodes
Class Scene

java.lang.Object
  |
  +--nodes.Scene

public class Scene
extends java.lang.Object

This class contains index constants to access fields in a Scene node using the WF3DNode.getField (int fieldIndex) method.

The Scene node is a WF3D-specific node and acts as the single root of the VRML scene graph. All the VRML root nodes of a scene graph are collected in the children field of a Scene node.


Field Summary
static int children
          The constant used to access the children field of a Scene node.
static int rendering
          The constant used to access the rendering field of a Scene node.
 
Constructor Summary
Scene()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

rendering

public static final int rendering
The constant used to access the rendering field of a Scene node.
In WF3D, this field contains the Rendering node.

This field is of VRML-type SFNode.

See Also:
Constant Field Values

children

public static final int children
The constant used to access the children field of a Scene node.
In WF3D, this field contains the root nodes of a VRML scene graph.

This field is of VRML-type MFNode.

See Also:
Constant Field Values
Constructor Detail

Scene

public Scene()