Пример #1
0
 //获得某个值,在最小最大值之间,最接近的值
 public static float Clamp(float value, float min, float max)
 {
     return(mImpl.Clamp(value, min, max));
 }