Returns a named node.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract Node GetNode (
        string name
) 
Parameters
name
The name of the node.
Return Value
The node.
Collapse/Expand Remarks
This method allows to retrieve references to nodes in the currently loaded 3D scene. To do that, you have to give the nodes names (via the VRML DEF mechanism).
Collapse/Expand Example
The following example demonstrates how to get a reference to a Group node named "root" (which is defined in the VRML scene as "DEF root Group {}"):
C#
Vrml.EAI.Browser browser = ...;
Vrml.EAI.Node group = browser.GetNode("root");