Difference between revisions of "LlFabs/de"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL_Function/de |func=llFabs|sort=Fabs |func_id=7|func_sleep=0.0|func_energy=10.0 |func_footnote |p1_type=float|p1_name=val|p1_desc=Any valid float value |return_type=float |return_text=...)
 
m
 
Line 25: Line 25:
|also_articles={{LSL DefineRow||{{Wikipedia|Absolute_value}}|}}
|also_articles={{LSL DefineRow||{{Wikipedia|Absolute_value}}|}}
|notes
|notes
|cat1=Math/de
|cat1=Math
|cat2
|cat2
|cat3
|cat3
|cat4
|cat4
}}
}}

Latest revision as of 14:15, 16 November 2008

Beschreibung

Funktion: float llFabs( float val );

that is the positive version of val.

• float val Any valid float value

Beispiele

<lsl> default {

   state_entry()
   {
       llSay(0,"The (Float)absolute value of -4.5 is: "+(string)llFabs(-4.5) );
   }

} // returns : // The (Float)absolute value of -4.5 is: 4.500000

</lsl>

Siehe auch

Funktionen

•  llAbs integer Variante von llFabs

Artikel

•  "Wikipedia logo"Absolute_value

Weiterführende Anmerkungen

Nach JIRA-Issues suchen, die sich hierauf beziehen

Signature

function float llFabs( float val );
Dieser Artikel war nicht hilfreich für Dich? Vielleicht bringt der zugehörige Artikel im SLinfo Wiki Erleuchtung.