Syntax
| C# |
|---|
public abstract float[] Get1Value (
int index
) |
Example
| C# |
|---|
Vrml.EAI.Node color = ...;
Vrml.EAI.Field.EventOutMFColor color_changed = (Vrml.EAI.Field.EventOutMFColor)color.GetEventOut("color_changed");
float[] c = color_changed.Get1Value(0);
System.Console.WriteLine("red = " + c[0] + ", green = " + c[1] + ", blue = " + c[2]);
|