LlPow
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: float llPow( float base, float exponent );| 5 | Function ID |
| 0.0 | Forced Delay |
| 10.0 | Energy |
Returns a float that is base raised to the power exponent (baseexponent)
| • float | base | |||
| • float | exponent |
Triggers a Math Error for imaginary results ((exponent != (integer)exponent) && (base < 0.0))
Examples
default { state_entry() { llOwnerSay("llPow(5, .5) (" + (string)llPow(5, .5) + ") is equal to llSqrt(5) (" + (string)llSqrt(5) + ")."); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

