Difference between revisions of "LlAcos/de"
< LlAcos
Jump to navigation
Jump to search
(translated) |
m (fix) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
|func=llAcos|sort=Acos | |func=llAcos|sort=Acos | ||
|return_type=float | |return_type=float | ||
|p1_type=float|p1_name=val|p1_desc=val muss Intervall [-1.0, 1.0] liegen. (-1.0 | |p1_type=float|p1_name=val|p1_desc=val muss Intervall [-1.0, 1.0] liegen. (-1.0 <{{=}} '''val''' <{{=}} 1.0) | ||
|return_text=dies ist der Arkuskosinus im Bogenmaß von '''val''' | |return_text=dies ist der Arkuskosinus im Bogenmaß von '''val''' | ||
|spec|caveats|func_footnote | |spec|caveats|func_footnote | ||
Line 16: | Line 16: | ||
}</lsl> | }</lsl> | ||
|helpers|related | |helpers|related | ||
|also_functions= | |also_functions={{LSL LinksToTrigonometricFunctions/de}} | ||
{{LSL | |||
|also_articles={{LSL DefineRow||{{wikipedia|lang=de|Arkusfunktion}}|}} | |also_articles={{LSL DefineRow||{{wikipedia|lang=de|Arkusfunktion}}|}} | ||
|notes | |notes |
Latest revision as of 14:49, 16 November 2008
LSL Portal | Funktionen | Ereignisse | Typen | Konstanten | Datenflusskontrolle | Script Sammlung | Tutorien |
Beschreibung
Funktion: float llAcos( float val );172 | Funktions ID |
0.0 | Verzögerung |
10.0 | Energie |
dies ist der Arkuskosinus im Bogenmaß von val
• float | val | – | val muss Intervall [-1.0, 1.0] liegen. (-1.0 <= val <= 1.0) |
Beispiele
<lsl>// Berühre das Objekt, welches dieses Script enthält, um den Arkuscosinus von Zufallszahlen gesagt zu bekommen. default {
touch_start(integer num) { float r = llFrand(2) - 1.0; llOwnerSay("The arccosine of " + (string)r + " is " + (string)llAcos(r)); }}</lsl>
Siehe auch
Weiterführende Anmerkungen
Dieser Artikel war nicht hilfreich für Dich? Vielleicht bringt der zugehörige Artikel im SLinfo Wiki Erleuchtung.