Difference between revisions of "LlFloor"
Jump to navigation
Jump to search
Line 49: | Line 49: | ||
state_entry() | state_entry() | ||
{ | { | ||
llSay(0,"The absolute value of -4.5 is: "+(string) | llSay(0,"The absolute value of -4.5 is: "+(string)llFloor(-4.5) ); | ||
} | } | ||
} | } | ||
Line 58: | Line 58: | ||
| | | | ||
<div id="box"> | <div id="box"> | ||
== Helper Functions == | == Helper Functions == | ||
<div style="padding: 0.5em"> | <div style="padding: 0.5em"> |
Revision as of 00:56, 25 January 2007
- The correct title of this article is llFloor. The initial letter is shown capitalized due to technical restrictions.
SpecificationReturns largest integer value <= val
| ||||||
Caveats | ||||||
Examples<lsl> default { state_entry() { llSay(0,"The absolute value of -4.5 is: "+(string)llFloor(-4.5) ); } } </lsl> | ||||||
Helper Functions<lsl> </lsl> | ||||||
See Also | ||||||
Notes |