Difference between revisions of "LlCeil"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{LSLFunctionAll
{{LSLFunctionAll
|func=llCeil
|func=llCeil
|func_id=9
|func_id=10
|func_sleep=0.0
|func_sleep=0.0
|func_energy=10.0
|func_energy=10.0

Revision as of 20:39, 25 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 llCeil( float val );

Returns a float that is the smallest integer value greater than or equal to val (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>

Deep Notes

Search JIRA for related Issues

Signature

function float llCeil( float val );