LlRound/ru

From Second Life Wiki
< LlRound
Revision as of 01:14, 30 August 2012 by Highstaker Resident (talk | contribs) (Created page with "{{LSL_Function/ru |func=llRound|sort=Round |func_id=11|func_sleep=0.0|func_energy=10.0 |func_footnote=Если цифра десятых меньше или равна 4, то у…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Общая информация

Function: integer llRound( float val );

Возвращает целое число, к которому ближе вещественное число val.

• float val Any valid float value

Если цифра десятых меньше или равна 4, то у val отбрасывается дробная часть; иначе, val округляется до большего целого, если оно положительно, или до меньшего, если отрицательно.

Предостережения

Примеры

<lsl>default {

  state_entry()
  {
      llSay(0,"The rounded value of -4.5 is: "+(string)llRound(-4.5) );
      //Returns "The rounded value of -4.5 is: -4"
      
      llSay(0,"The rounded value of -4.9 is: "+(string)llRound(-4.9) );
      //Returns "The rounded value of -4.9 is: -5"
      
      llSay(0,"The rounded value of -4.1 is: "+(string)llRound(-4.1) );
      //Returns "The rounded value of -4.1 is: -4"
      
      llSay(0,"The rounded value of 4.5 is: "+(string)llRound(4.5) );
      //Returns "The rounded value of 4.5 is: 5"
      
      llSay(0,"The rounded value of 4.9 is: "+(string)llRound(4.9) );
      //Returns "The rounded value of 4.9 is: 5"
      
      llSay(0,"The rounded value of 4.1 is: "+(string)llRound(4.1) );
      //Returns "The rounded value of 4.1 is: 4"
   }
}</lsl>

См. также

Функции

•  llCeil Rounds the float to an integer towards positive infinity
•  llFloor Rounds the float to an integer towards negative infinity

Углублённые заметки

Search JIRA for related Issues

Описания

function integer llRound( float val );