LlRound

From Second Life Wiki
Revision as of 20:39, 25 January 2007 by Strife Onizuka (talk | contribs) (LlRound moved to LSL llRound)
Jump to navigation Jump to search
The correct title of this article is llRound. The initial letter is shown capitalized due to technical restrictions.


integer llRound( float val);

  • val - Any valid float value

Specification

Returns val rounded to the nearest integer

Energy: 10.0
Sleep: 0.0
Function ID: 11

Caveats

Examples

<lsl> default {

  state_entry()
  {
      llSay(0,"The rounded value of -4.5 is: "+(string)llRound(-4.5) );
  }

} </lsl>

Helper Functions

<lsl> </lsl>

See Also

Notes