pub fn vec_clamp(dst: &mut [f32], src: &[f32], min: f32, max: f32)
Clamp: dst[i] = clamp(src[i], min, max).
dst[i] = clamp(src[i], min, max)