llCeil

From Second Life Wiki
Revision as of 23:34, 27 January 2007 by Dzonatas Sol (talk | contribs)
Jump to navigation Jump to search

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

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

• float val Any valid float value

Examples

<lsl> default {

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

}

</lsl>

See Also

Functions

Deep Notes

Search JIRA for related Issues

Signature

function float llCeil( float val );