Afterglow.Math.Functions.Pow C# (CSharp) Method

Pow() public static method

Returns base raised to exponent.
public static Pow ( float baseValue, float exponent ) : float
baseValue float The base value.
exponent float The exponent value.
return float
        public static float Pow(float baseValue, float exponent)
        {
            return (float)System.Math.Pow(baseValue, exponent);
        }