Reference to a MFVec3f event-out slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOutMFVec3f :  EventOutMField
Collapse/Expand Remarks
Use this class to read values from MFVec3f event-out slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
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 = point_changed.GetValue();
for (int i = 0; i < v.Length; ++i)
    System.Console.WriteLine("x = " + v[i][0] + ", y = " + v[i][1] + ", z = " + v[i][2]);