関数: float llPow( float base, float exponent );
冪法則(baseexponent)で持ち上げられるbaseのfloat値を返します。
| • float
| base
|
|
|
|
| • float
| exponent
|
|
|
|
虚数の結果((exponent != (integer)exponent) && (base < 0.0))は演算エラーを引き起こします。
例
default {
state_entry() {
llOwnerSay("llPow(5, .5) (" + (string)llPow(5, .5) + ") is equal to llSqrt(5) ("
+ (string)llSqrt(5) + ").");
}result
}