llFloor/ru

From Second Life Wiki
< LlFloor
Revision as of 01:24, 30 August 2012 by Highstaker Resident (talk | contribs) (Created page with "{{LSL_Function |func=llFloor |func_id=9|func_sleep=0.0|func_energy=10.0 |func_footnote |p1_type=float|p1_name=val|p1_desc=Any valid float value |return_type=integer |return_text=…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Summary

Function: integer llFloor( float val );

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

• float val Any valid float value

Examples

<lsl>default {

  state_entry()
  {
      llSay(0,"The floor value of -4.5 is: "+(string)llFloor(-4.5) );
      //Returns "The floor value of -4.5 is: -5"
      llSay(0,"The floor value of -4.9 is: "+(string)llFloor(-4.9) );
      //Returns "The floor value of -4.9 is: -5"
      llSay(0,"The floor value of -4.1 is: "+(string)llFloor(-4.1) );
      //Returns "The floor value of -4.1 is: -5"
      llSay(0,"The floor value of 4.5 is: "+(string)llFloor(4.5) );
      //Returns "The floor value of 4.5 is: 4"
      llSay(0,"The floor value of 4.9 is: "+(string)llFloor(4.9) );
      //Returns "The floor value of 4.9 is: 4"
      llSay(0,"The floor value of 4.1 is: "+(string)llFloor(4.1) );
      //Returns "The floor value of 4.1 is: 4"
   }
}</lsl>

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 integer llFloor( float val );