Difference between revisions of "LlRound"

From Second Life Wiki
Jump to navigation Jump to search
Line 33: Line 33:
</lsl>
</lsl>
|helpers
|helpers
|related={{LSLG|llCeil}}<br/>{{LSLG|llFloor}}
|also_func=
|also
*{{LSLG|llCeil}}
*{{LSLG|llFloor}}
|notes
|notes
}}
}}

Revision as of 22:05, 27 January 2007

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

Summary

Function: float llRound( float val );

Returns a float that is the closest integer value to val.

• float val Any valid float value

Values on the 0.5 boundary get rounded up.

Examples

<lsl> default {

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

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function float llRound( float val );