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

◆ QuatCopy()

static void Math3D::QuatCopy ( float s[4],
out float d[4] )
inlinestaticprivate

Copies quaternion.

Аргументы
sfloat[4] quaternion to copy
[out]dfloat[4] created quaternion copy
float s[4] = { 2, 3, 4, 1 };
float d[4];
Math3D.QuatCopy( s, d );
Print( d );
>> {2,3,4,1}
Определения EnMath3D.c:28
proto void Print(void var)
Prints content of variable to console/log.
static void QuatCopy(float s[4], out float d[4])
Copies quaternion.
Определения EnMath3D.c:337

См. определение в файле EnMath3D.c строка 337

338 {
339 d[0] = s[0];
340 d[1] = s[1];
341 d[2] = s[2];
342 d[3] = s[3];
343 }