float llSqrt(float val)
Returns the square root of
val (the return
value squared will be
val).
It's equivalent
(in theory) to
llPow(float val, 0.5) (which, for speed reasons, may have it's precision clamped).
Compare with
llPow.
Note: This
function gives a
runtime error if
val is
< 0.
Functions |
Math