MathUtilClamp Method (Double, Double, Double) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The closest value to a specified double that falls within a specified range.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static double Clamp(
double x,
double minValue,
double maxValue
)
Public Shared Function Clamp (
x As Double,
minValue As Double,
maxValue As Double
) As Double
Parameters
- x
- Type: SystemDouble
The double to clamp. - minValue
- Type: SystemDouble
The minimum value that can be returned. - maxValue
- Type: SystemDouble
The maximum value that can be returned.
Return Value
Type:
DoubleIf x lies between minValue and maxValue, the result is x. Otherwise,
the value is minValue if x is less than minValue, or maxValue if x is greater than maxValue.
See Also