Difference between revisions of "LlLog10/ja"
< LlLog10
Jump to navigation
Jump to search
Mako Nozaki (talk | contribs) m (カテゴリ変更) |
|||
(One intermediate revision by one other user not shown) | |||
Line 8: | Line 8: | ||
|caveats= | |caveats= | ||
|constants | |constants | ||
|examples=< | |examples=<source lang="lsl2">default | ||
{ | { | ||
state_entry() | state_entry() | ||
Line 16: | Line 16: | ||
llOwnerSay("The base 10 logarithm of " + (string)num1 + " is " + (string)llLog10(num1)); | llOwnerSay("The base 10 logarithm of " + (string)num1 + " is " + (string)llLog10(num1)); | ||
} | } | ||
}</ | }</source> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||[[llLog/ja|llLog]]|}} | |also_functions={{LSL DefineRow||[[llLog/ja|llLog]]|}} | ||
Line 29: | Line 29: | ||
|negative_index | |negative_index | ||
|sort=Log10 | |sort=Log10 | ||
|cat1=Math | |cat1=Math | ||
|cat2 | |cat2 | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 06:21, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
サンプル
default
{
state_entry()
{
float num1 = llFrand(100.0);
llOwnerSay("The base 10 logarithm of " + (string)num1 + " is " + (string)llLog10(num1));
}
}
注意点
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。