DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ RemainderFloat()

static proto float Math::RemainderFloat ( float x,
float y )
staticprivate

Returns the floating-point remainder of x/y rounded to nearest.

Аргументы
xfloat Value of the quotient numerator
yfloat Value of the quotient denominator
Возвращает
float - The remainder of dividing the arguments
Print( Math.RemainderFloat(5.3, 2) );
Print( Math.RemainderFloat(18.5, 4.2) );
>> -0.7
>> 1.7
proto void Print(void var)
Prints content of variable to console/log.
void Math()
Определения EnMath.c:8

Перекрестные ссылки x и y.