Syntax
| C# |
|---|
public abstract void Set1Value (
int index,
float[] value
) |
Example
| C# |
|---|
Vrml.EAI.Node color = ...;
Vrml.EAI.Field.EventInMFColor set_color = (Vrml.EAI.Field.EventInMFColor)color.GetEventIn("set_color");
float[] c = new float[] { 1.0f, 0.0f, 0.0f }; // red color
set_color.Set1Value(0, c);
|