Returns the current value of the MFVec3f event-out slot.
C# |
---|
public abstract void GetValue (
float[] value
) |
The following example gets the coordinates from the "point"
field of a Coordinate node and prints them to the console:
C# |
---|
Vrml.EAI.Node coordinate = ...;
Vrml.EAI.Field.EventOutMFVec3f point_changed = (Vrml.EAI.Field.EventOutMFVec3f)coordinate.GetEventOut("point_changed");
float[] v = new float[point_changed.Size * 3];
point_changed.GetValue(v);
for (int i = 0; i < v.Length; i += 3)
System.Console.WriteLine("x = " + v[i] + ", y = " + v[i + 1] + ", z = " + v[i + 2]);
|