Reference to a MFFloat event-in slot.
C# |
---|
public abstract class EventInMFFloat : |
EventIn
|
|
Click here to see the list of members.
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 });
|