BEPUutilities2.MathHelper.Max C# (CSharp) Method

Max() private method

private Max ( float a, float b ) : float
a float
b float
return float
        public static float Max(float a, float b)
        {
            return a > b ? a : b;
        }

Same methods

MathHelper::Max ( int a, int b ) : int
MathHelper::Max ( long a, long b ) : long