I'm looking for the most succinct and general implementation of the following function:
float Constrain(float value, float min, float max);
Where Constrain() bounds value in the range [min, float). Ie, the range includes min but excludes max and values greater than max or less than min wrap around in a circle. Ie, in a similar way to integers over/underflow.
The function should pass the following tests:
Constrain( 0.0, 0.0, 10.0) == 0.0
Constrain( 10.0, 0.0, 10.0) == 0.0
Constrain( 5.0, 0.0, 10.0) == 5.0
Constrain( 15.0, 0.0, 10.0) == 5.0
Constrain( -1.0, 0.0, 10.0) == 9.0
Constrain(-15.0, 0.0, 10.0) == 5.0
Constrain( 0.0, -5.0, 5.0) == 0.0
Constrain( 5.0, -5.0, 5.0) == -5.0
Constrain( 0.0, -5.0, 5.0) == 0.0
Constrain( 10.0, -5.0, 5.0) == 0.0
Constrain( -6.0, -5.0, 5.0) == 4.0
Constrain(-10.0, -5.0, 5.0) == 0.0
Constrain( 24.0, -5.0, 5.0) == 4.0
Constrain( 0.0, -5.0, 0.0) == -5.0
Constrain( 5.0, -5.0, 0.0) == -5.0
Constrain( 10.0, -5.0, 0.0) == -5.0
Constrain( -3.0, -5.0, 0.0) == -3.0
Constrain( -6.0, -5.0, 0.0) == -1.0
Constrain(-10.0, -5.0, 0.0) == -5.0
Note that the min param can be assumed to be always numerically less than max.
There is probably a very simple formula to solve this question but and I'm being spectacularly dumb not knowing the generalised solution to it.