|
GPS ToolKit.NET
Angle Class
Represents an angle, course, or bearing.
Syntax
[Visual Basic]
Dim instance As Angle
[C#]
Angle instance
[C++]
Angle* instance
[Visual Basic]
Dim instance As Angle(Degrees)
[C#]
Angle instance = new Angle(Degrees)
[C++]
Angle* instance = new Angle(Degrees)
Parameters
Degrees
A double representing the angle in degrees.
Remarks
Angle represents an angle, course, or bearing value in degrees.
Because course or bearing information may not be available from the GPS, it is important to check the IsValid property before using
the data.
Instance Hierarchy
SciCom
   SciCom.GPSToolKit
     SciCom.GPSToolKit.GPSToolKit
         SciCom.GPSToolKit.GPSToolKit.Angle
Thread Safety
Angle is thread safe for use by multiple threads.
Properties
| Property
| Description |
IsValid property |
True if the altitude is valid, false if it is invalid or unavailable |
ValueInDegrees property |
A double representing the angle value in degrees |
See Also
GPSToolKit class
|