Symbolic name for the MFVec2f field type.
C# |
---|
public const int MFVec2f = 19 |
The following example demonstrates how to check if a field
is a MFVec2f field:
C# |
---|
Vrml.EAI.Field.BaseField field = ...;
if (field.Type == Vrml.EAI.Field.BaseField.MFVec2f)
{
...
}
|