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

◆ InvMultiply3()

proto vector vector::InvMultiply3 ( vector mat[3])
private

Invert-transforms vector.

Аргументы
matvector[3] transformation matrix
vecvector vector to transform
Возвращает
vector transformed vector
vector mat[3] = { "1.5 2.5 0", "0.1 1.3 0", "0 0 1" }; // rotation matrix
vector vec = "1 1 1";
Print( vec.InvMultiply3(mat) );
>> <4,1.4,1>
proto vector InvMultiply3(vector mat[3])
Invert-transforms vector.
Определения EnConvert.c:106
proto void Print(void var)
Prints content of variable to console/log.

Используется в EOnPostSimulate(), BoatHud::GetSpeedometer(), Weapon::LiftWeaponCheck() и OnUpdate().