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

◆ SignFloat()

static proto float Math::SignFloat ( float f)
staticprivate

Returns sign of given value.

Аргументы
ffloat Value
Возвращает
float - Sign of given value
Print( Math.SignFloat(-12.0) );
Print( Math.SignFloat(0.0) );
Print( Math.SignFloat(12.0) );
>> -1.0
>> 0
>> 1.0
proto void Print(void var)
Prints content of variable to console/log.
void Math()
Определения EnMath.c:8