Click or drag to resize

MathExtensionsClip Method (Single, Single, Single)

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 float Clip(
	this float value,
	float minValue,
	float maxValue
)

Parameters

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

Return Value

Type: Single
The clipped value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Single. 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