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