Difference between revisions of "LlFloor"
Jump to navigation
Jump to search
Line 49: | Line 49: | ||
state_entry() | state_entry() | ||
{ | { | ||
llSay(0,"The | llSay(0,"The floor value of -4.5 is: "+(string)llFloor(-4.5) ); | ||
} | } | ||
} | } |
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 floor value of -4.5 is: "+(string)llFloor(-4.5) ); } } </lsl> | ||||||
Helper Functions<lsl> </lsl> | ||||||
See Also | ||||||
Notes |