Returns a named node.
C# |
---|
public abstract Node GetNode (
string name
) |
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");
|