Struct AngleOfBank
Handling of an angle of bank value
Assembly: FpAssistantCoreScl.dll
Syntax
public struct AngleOfBank : IEquatable<AngleOfBank>
Constructors
View Source
AngleOfBank(double)
Declaration
public AngleOfBank(double angleOfBank)
Parameters
| Type |
Name |
Description |
| double |
angleOfBank |
The angle of bank in degrees
|
Properties
View Source
Value
Property to get of set the value of Angle of Bank
Declaration
public double Value { get; set; }
Property Value
| Type |
Description |
| double |
Degrees value
|
Methods
View Source
AsAngle()
Angle of bank represented as Angle object
Declaration
Returns
| Type |
Description |
| Angle |
Angle object with value assigned
|
See Also
View Source
AsDegrees()
Angle of bank represented as Degrees
Declaration
public double AsDegrees()
Returns
| Type |
Description |
| double |
Degrees value
|
View Source
CompareTo(AngleOfBank)
Compares the current instance with another angle of bank.
Declaration
public int CompareTo(AngleOfBank other)
Parameters
Returns
View Source
Equals(AngleOfBank)
Declaration
public bool Equals(AngleOfBank other)
Parameters
Returns
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Operators
View Source
operator ==(AngleOfBank, AngleOfBank)
Declaration
public static bool operator ==(AngleOfBank left, AngleOfBank right)
Parameters
Returns
View Source
operator >(AngleOfBank, AngleOfBank)
Declaration
public static bool operator >(AngleOfBank left, AngleOfBank right)
Parameters
Returns
View Source
operator >=(AngleOfBank, AngleOfBank)
Declaration
public static bool operator >=(AngleOfBank left, AngleOfBank right)
Parameters
Returns
View Source
operator !=(AngleOfBank, AngleOfBank)
Declaration
public static bool operator !=(AngleOfBank left, AngleOfBank right)
Parameters
Returns
View Source
operator <(AngleOfBank, AngleOfBank)
Declaration
public static bool operator <(AngleOfBank left, AngleOfBank right)
Parameters
Returns
View Source
operator <=(AngleOfBank, AngleOfBank)
Declaration
public static bool operator <=(AngleOfBank left, AngleOfBank right)
Parameters
Returns
Implements