Difference between revisions of "LlPow/ja"
< LlPow
Jump to navigation
Jump to search
Asuka Neely (talk | contribs) (New page: {{multi-lang}}{{LSL_Function/ja |sort=Pow|func=llPow |func_id=5|func_sleep=0.0|func_energy=10.0 |func_footnote=虚数の演算エラーで作動すると<pre>((expone...) |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Function/ja | |||
|sort=Pow|func=llPow | |sort=Pow|func=llPow | ||
|func_id=5|func_sleep=0.0|func_energy=10.0 | |func_id=5|func_sleep=0.0|func_energy=10.0 | ||
|func_footnote= | |func_footnote=計算の結果、虚数となった場合は ((exponent != (integer)exponent) && (base < 0.0)) 、 {{LSLG/ja|LSL_Math_Error|算術エラー}} となります。 | ||
|p1_type=float|p1_name=base|p1_desc | |p1_type=float|p1_name=base|p1_desc | ||
|p2_type=float|p2_name=exponent|p2_desc | |p2_type=float|p2_name=exponent|p2_desc | ||
|return_type=float | |return_type=float | ||
|return_text= | |return_text='''base''' を '''exponent''' 乗したもの ('''base'''<sup>'''exponent'''</sup>) | ||
|spec | |spec | ||
|caveats=* スクリプトがクラッシュする可能性があります。 | |caveats=* スクリプトがクラッシュする可能性があります。 | ||
|examples= | |examples= | ||
< | <source lang="lsl2"> | ||
default { | default { | ||
state_entry() { | state_entry() { | ||
llOwnerSay("llPow(5, .5) (" + (string)llPow(5, .5) + ") is equal to llSqrt(5) (" | llOwnerSay("llPow(5, .5) (" + (string)llPow(5, .5) + ") is equal to llSqrt(5) (" | ||
+ (string)llSqrt(5) + ")."); | + (string)llSqrt(5) + ")."); | ||
} | } | ||
}</ | } | ||
</source> | |||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow|| | |also_functions={{LSL DefineRow||{{LSLG/ja|llLog}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llLog10}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSqrt}}|}} | ||
|also_events | |also_events | ||
|also_articles | |also_articles | ||
|also_tests | |also_tests | ||
|notes | |notes | ||
|cat1=Math | |cat1=Math | ||
|cat2=Error/Math | |cat2=Error/Math | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 06:21, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
警告
- スクリプトがクラッシュする可能性があります。
サンプル
default {
state_entry() {
llOwnerSay("llPow(5, .5) (" + (string)llPow(5, .5) + ") is equal to llSqrt(5) ("
+ (string)llSqrt(5) + ").");
}
}
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。