LlCeil: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
Strife Onizuka (talk | contribs)
No edit summary
No edit summary
(4 intermediate revisions by 3 users not shown)
Line 4: Line 4:
|func_footnote
|func_footnote
|p1_type=float|p1_name=val|p1_desc=Any valid float value
|p1_type=float|p1_name=val|p1_desc=Any valid float value
|return_type=float
|return_type=integer
|return_text=that is the integer value of val rounded towards positive infinity (return >= val).
|return_text=that is the integer value of '''val''' rounded towards positive infinity (return >= val).
|spec
|spec
|caveats
|caveats
|examples=<pre>
|examples=
<lsl>
default {
default {
   state_entry()
   state_entry()
   {
   {
       llSay(0,"The ceil value of -4.5 is: "+(string)llCeil(-4.5) );
       llSay(0,"The ceil value of -4.5 is: "+(string)llCeil(-4.5) );
   }
   }   //Returns "The ceil value of -4.5 is: -4"
}
}
</pre>
</lsl>
|helpers
|helpers
|constants
|constants
Line 21: Line 22:
|also_events
|also_events
|also_articles
|also_articles
|also_functions={{{!}}
|also_functions={{LSL DefineRow||[[llRound]]|Rounds the float to an integer towards the closest integer}}
{{LSL DefineRow||[[llRound]]|Rounds the float to an integer towards the closest integer}}
{{LSL DefineRow||[[llFloor]]|Rounds the float to an integer towards negative infinity}}
{{LSL DefineRow||[[llFloor]]|Rounds the float to an integer towards negative infinity}}
{{!}}}
|notes
|notes
|cat1=Math
|cat1=Math

Revision as of 06:13, 7 July 2009

Summary

Function: integer llCeil( float val );
0.0 Forced Delay
10.0 Energy

Returns an integer 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) );
  }   //Returns "The ceil value of -4.5 is: -4"

}

</lsl>

See Also

Functions

•  llRound Rounds the float to an integer towards the closest integer
•  llFloor Rounds the float to an integer towards negative infinity

Deep Notes

Signature

function integer llCeil( float val );