Difference between revisions of "LlAbs/it"
< LlAbs
Jump to navigation
Jump to search
(New page: {{LSL_Function |func=llAbs |sort=Abs |func_id=6|func_sleep=0.0|func_energy=10.0 |func_footnote |p1_type=integer |p1_name=val |p1_desc=Qualsiasi valore intero |return_type=integer |return_t...) |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Function | {{LSL_Function/it | ||
|func=llAbs | |func=llAbs | ||
|sort=Abs | |sort=Abs | ||
Line 56: | Line 56: | ||
|also_articles | |also_articles | ||
|also_footer | |also_footer | ||
|also_functions={{LSL DefineRow||{{LSLG|llFabs}}|{{LSLG| | |also_functions={{LSL DefineRow||{{LSLG|llFabs}}|versione a {{LSLG|virgola mobile}} di llAbs}} | ||
|also_events | |also_events | ||
|also_articles={{LSL DefineRow||{{Wikipedia|Valore assoluto}}|}} | |also_articles={{LSL DefineRow||{{Wikipedia|Valore_assoluto|Wikipedia italiana: Valore assoluto|lang=it}}|}} | ||
|notes | |notes | ||
|cat1=Math | |cat1=Math/it | ||
|cat2 | |cat2 | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 04:28, 2 April 2008
Portale LSL | Funzioni | Eventi | Tipi | Operatori | Costanti | Flusso d'esecuzione | Libreria degli Script | Tutorial |
Sommario
Function: integer llAbs( integer val );6 | ID funzione |
0.0 | Ritardo |
10.0 | Energia |
Restituisce an integer il valore assoluto di val.
• integer | val | – | Qualsiasi valore intero |
Esempi
<lsl> // Questo è un semplice esempio. default {
state_entry() { llSay(0,"Il valore assoluto di -4 è: "+(string)llAbs(-4) ); }
} </lsl>
<lsl> // Questo è un esempio più elaborato. ShowAbsolute(integer X) {
string Message = "llAbs(" + (string)X + ") --> " + (string)llAbs(X); llSay(PUBLIC_CHANNEL, Message);
} default {
state_entry() { ShowAbsolute(-3); ShowAbsolute(5); ShowAbsolute(-20); ShowAbsolute(0); }
} </lsl>
<lsl> // Questo è il risultato prodotto dall'esempio più elaborato: Oggetto di Prova: llAbs(-3) --> 3 Oggetto di Prova: llAbs(5) --> 5 Oggetto di Prova: llAbs(-20) --> 20 Oggetto di Prova: llAbs(0) --> 0
</lsl>Si veda anche
Funzioni
• | llFabs | – | versione a virgola mobile di llAbs |
Articoli
• | Wikipedia italiana: Valore assoluto |