Difference between revisions of "LlFloor"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 49: Line 49:
   state_entry()
   state_entry()
   {
   {
       llSay(0,"The absolute value of -4.5 is: "+(string)llFabs(-4.5) );
       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 01:56, 25 January 2007

The correct title of this article is llFloor. The initial letter is shown capitalized due to technical restrictions.


integer llFloor( float val);

  • val - Any valid float value

Specification

Returns largest integer value <= val

Energy: 10.0
Sleep: 0.0
Function ID: 9

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