Multiplies a number by itself and so returns the square of that number. EG: sqr(5) would return 25 since 5*5=25.
sqr(val);
Argument | Type | Description |
---|---|---|
val | Real | The number to square. |
score += sqr(dmg);
The above code will add on the square of the variable "dmg" to the score.