Click or drag to resize

MathExtensionsClip Method (Double, Double, Double)

Clips the specified value so it does not exceed min or max.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static double Clip(
	this double value,
	double minValue,
	double maxValue
)

Parameters

value
Type: SystemDouble
The value.
minValue
Type: SystemDouble
The minimum value.
maxValue
Type: SystemDouble
The maximum value.

Return Value

Type: Double
The clipped value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also