DayZ
1.27
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
◆
QuatIdentity()
static void Math3D::QuatIdentity
(
out
float
q
[4]
)
inline
static
private
Creates identity quaternion.
Аргументы
[out]
q
float
[4] created identity quaternion
float
q[4];
Math3D
.QuatIdentity( q );
Print
( q );
>> {0,0,0,1}
Print
proto void Print(void var)
Prints content of variable to console/log.
Math3D::Math3D
void Math3D()
Определения
EnMath3D.c:29
См. определение в файле
EnMath3D.c
строка
316
317
{
318
q[0] = 0;
319
q[1] = 0;
320
q[2] = 0;
321
q[3] = 1;
322
}
Math3D
Создано системой
1.13.2