您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
422 B
18 行
422 B
using System;
|
|
|
|
namespace VrmLib
|
|
{
|
|
public static class MathFWrap
|
|
{
|
|
public static readonly float PI = (float)System.Math.PI;
|
|
|
|
public static float Clamp(float src, float min, float max)
|
|
{
|
|
return Math.Max(Math.Min(src, min), max);
|
|
}
|
|
public static int Clamp(int src, int min, int max)
|
|
{
|
|
return Math.Max(Math.Min(src, min), max);
|
|
}
|
|
}
|
|
}
|