VIDEO.GetAngleUnits

Previous  Next

 

units = VIDEO.GetAngleUnits( nControl AS INTEGER ) AS STRING

 

 

 

 

Sets or gets the Angle Units.  Can be one of the following constants:

 

' Angle Units

CONST MT_Units_Degrees     = 0

CONST MT_Units_Radians     = 1

CONST MT_Units_Grads       = 2

 

Example:

 

PRINT "No of Frames: ";VIDEO.GetNoOfFrames( nControl ),

PRINT "Resolution:   ";VIDEO.GetXResolution( nControl );"x";VIDEO.GetYResolution( nControl ),

PRINT "Units:        ";VIDEO.GetUnits( nControl ),

PRINT "Angle Units:  ";VIDEO.GetAngleUnits( nControl ),

PRINT "Marker Shape: ";VIDEO.GetMarkerShape( nControl ),

PRINT "Time Stamp:   ";VIDEO.GetTimeStamp( nControl ),

PRINT "File Time:    ";VIDEO.GetFileTime( nControl ),

PRINT "Frame Time:   ";VIDEO.GetFrameTime( nControl, 10 ),