Pow - Math

Revision as of 15:11, 2 December 2015 by imported>Plplecuyer
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Math Script

Raises x to the y power, usually written as xy.

SyntaxEdit

float Function pow(float x, float y) native global

ParametersEdit

  • x: The value to raise.
  • y: The power to raise the value to.

Return ValueEdit

The result of xy.

ExamplesEdit

float x = pow(2, 2) ; x == 4
float y = pow(2, 8) ; y == 256

See AlsoEdit