Difference between revisions of "Pow"
From King Arthur's Gold Wiki
Shadlington (Talk | contribs) (Created page with "<onlyinclude> Returns base raised to the power exponent. </onlyinclude> This method has 3 variants, for different argument types. <syntaxhighlight lang="cpp"> float Pow(float ba...") |
(No difference)
|
Revision as of 16:32, 22 August 2012
Returns base raised to the power exponent.
This method has 3 variants, for different argument types.
float Pow(float base, float exponent) double Pow(double base, double exponent) float Pow(float base, int exponent)