TrigIsAngleInRange Method |
Checks to see if an angle is within the indicated range of values.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static bool IsAngleInRange(
double minimum,
double maximum,
double angle
)
Public Shared Function IsAngleInRange (
minimum As Double,
maximum As Double,
angle As Double
) As Boolean
public:
static bool IsAngleInRange(
double minimum,
double maximum,
double angle
)
static member IsAngleInRange :
minimum : float *
maximum : float *
angle : float -> bool
Parameters
- minimum
- Type: SystemDouble
The minimum angle value. - maximum
- Type: SystemDouble
The maximum angle value. - angle
- Type: SystemDouble
The angle value being checked.
Return Value
Type:
Boolean if
angle is within the indicated range of values; otherwise
.
Remarks
The range of values is considered to be an open interval and therefore does not include the
actual minimum and maximum values.
See Also