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