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

◆ QuatMultiply()

static proto void Math3D::QuatMultiply ( out float qout[4],
float q1[4],
float q2[4] )
staticprivate

Multiplies quaternions.

Аргументы
[out]qoutfloat[4] result quaternion
q1float[4] first quaternion
q2float[4] second quaternion
float q1[4] = { 1, 2, 3, 1 };
float q2[4] = { 2, 2, 2, 1 };
float qout[4];
Math3D.QuatMultiply( qout, q1, q2 );
Print( qout );
>> {2,4,6,1}
proto void Print(void var)
Prints content of variable to console/log.
void Math3D()
Определения EnMath3D.c:29