Collapse All
Syntax
| C# |
|---|
public abstract Node[] CreateVrmlFromString (
string vrmlString
) |
Remarks
Example
| C# |
|---|
Vrml.EAI.Browser browser = ...;
Vrml.EAI.Node[] nodes = browser.CreateVrmlFromString("Shape { geometry Box {} }");
|