void clamp_value(float value, float min, float max, out float result) { result = clamp(value, min, max); }