Garry's Mod Wiki

Revision Difference

math.pow#522276

<function name="pow" parent="math" type="libraryfunc"> <description> Returns x raised to the power y. In particular, math.pow(1.0, x) and math.pow(x, 0.0) always return 1.0, even when x is a zero or a NaN. If both x and y are finite, x is negative, and y is not an integer then math.pow(x, y) is undefined. In particular, math.pow(1.0, x) and math.pow(x, 0.0) always return 1.0, even when x is a zero or a <page>nan</page>. If both x and y are finite, x is negative, and y is not an integer then math.pow(x, y) is undefined. </description> <realm>Shared and Menu</realm> <args> <arg name="x" type="number">Base.</arg> <arg name="y" type="number">Exponent.</arg> </args> <rets> <ret name="" type="number">y power of x</ret> </rets> </function>