Reference to a MFFloat event-out slot.
C# |
---|
public abstract class EventOutMFFloat : |
EventOutMField
|
|
Click here to see the list of members.
The following example gets the keys from the "key" field of a
CoordinateInterpolator node and prints them to the console:
C# |
---|
Vrml.EAI.Node coordinateInterpolator = ...;
Vrml.EAI.Field.EventOutMFFloat key_changed = (Vrml.EAI.Field.EventOutMFFloat)coordinateInterpolator.GetEventOut("key_changed");
float[] f = key_changed.GetValue();
for (int i = 0; i < f.Length; ++i)
System.Console.WriteLine(f[i]);
|