Sets the elements of the MFFloat event-in slot.
Declaring type: EventInMFFloat
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void SetValue (
        float[] value
) 
Parameters
value
The new float values
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 });