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