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 | Description |
---|---|
val | The number to square. |
Real
score += sqr(dmg);
The above code will add on the square of the variable "dmg" to the score.