double Pin (double value, double minimum, double maximum);
Forces a value to be within a range specified by a minimum and a maximum. If the value is between the minimum and the maximum, then it is returned unaltered. If the value is less than the minimum, then the minimum is returned. If the value is greater than the maximum, then the maximum is returned.
Input | ||
Name | Type | Description |
value | double | The value to be pinned between the maximum and the minimum. |
minimum | double | The minimum value that Pin can return. |
maximum | double | The maximum value that Pin can return. |
Name | Type | Description |
pinnedValue | double | Returns the pinned value. |