Agent.Bounds.max C# (CSharp) Method

max() public static method

public static max ( float f1, float f2 ) : float
f1 float
f2 float
return float
    public static float max(float f1, float f2)
    {
      return (f1 < f2) ? f2 : f1;
    }