Syntax
| C# |
|---|
public abstract void Set1Value (
int index,
float[] value
) |
Example
| C# |
|---|
Vrml.EAI.Node coordinate = ...;
Vrml.EAI.Field.EventInMFVec3f set_point = (Vrml.EAI.Field.EventInMFVec3f)coordinate.GetEventIn("set_point");
float[] v = new float[] { -1.0f, -1.0f, 0.0f };
set_point.Set1Value(0, v);
|