Difference between revisions of "LlFloor"

From Second Life Wiki
Jump to navigation Jump to search
Line 20: Line 20:
</pre>
</pre>
|helpers
|helpers
|constants
|also_tests
|also_events
|also_articles
|also_functions={{{!}}
|also_functions={{{!}}
{{LSL DefineRow||[[llRound]]|Rounds the float to an integer towards the closest integer}}
{{LSL DefineRow||[[llRound]]|Rounds the float to an integer towards the closest integer}}

Revision as of 14:20, 22 February 2007

Summary

Function: float llFloor( float val );

Returns a float that is the integer value of val rounded towards negative infinity (return <= val).

• float val Any valid float value

Examples

default {
   state_entry()
   {
       llSay(0,"The floor value of -4.5 is: "+(string)llFloor(-4.5) );
   }
}

See Also

Functions

•  llRound Rounds the float to an integer towards the closest integer
•  llCeil Rounds the float to an integer towards positive infinity

Deep Notes

Search JIRA for related Issues

Signature

function float llFloor( float val );