float Maths.RaiseToPower(float base, float exponent)
Calculates the value of base raised to the power exponent.
This means that base is multiplied by itself exponent times.
Example:
float value = Maths.RaiseToPower(4.0, 3.0);
calculates 4 to the power 3 (which is 64).
See Also: Maths.Sqrt
|