Reference to a MFFloat event-in slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventInMFFloat :  EventIn
Collapse/Expand Remarks
Use this class to write values into MFFloat event-in slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to write three float values (0, 0.5 and 1) into the "key" field of a CoordinateInterpolator node:
C#
Vrml.EAI.Node coordinateInterpolator = ...;
Vrml.EAI.Field.EventInMFFloat set_key = (Vrml.EAI.Field.EventInMFFloat)coordinateInterpolator.GetEventIn("set_key");
set_key.SetValue(new float[] { 0.0f, 0.5f, 1.0f });