Difference between revisions of "LlRound/ru"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with "{{LSL_Function/ru |func=llRound|sort=Round |func_id=11|func_sleep=0.0|func_energy=10.0 |func_footnote=Если цифра десятых меньше или равна 4, то у…")
 
Line 33: Line 33:
}</lsl>
}</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llCeil]]|Rounds the float to an integer towards positive infinity}}
|also_functions={{LSL DefineRow||[[llCeil]]|Округляет значение в положительном направлении}}
{{LSL DefineRow||[[llFloor]]|Rounds the float to an integer towards negative infinity}}
{{LSL DefineRow||[[llFloor]]|Округляет значение в отрицательном направлении}}
|also_events
|also_events
|also_articles
|also_articles

Revision as of 01:22, 30 August 2012

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

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 Округляет значение в положительном направлении
•  llFloor Округляет значение в отрицательном направлении

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

Search JIRA for related Issues

Описания

function integer llRound( float val );