DayZ
1.27
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
◆
InvMultiply4()
proto
vector
vector::InvMultiply4
(
vector
mat
[4]
)
private
Invert-transforms position.
Аргументы
mat
vector
[4] transformation matrix
vec
vector
position to transform
Возвращает
vector
transformed position
vector
mat[4] = {
"1 0 0 0"
,
"0 1 0 0"
,
"0 0 1 1"
,
"3 1 2 1"
};
// translation matrix
vector
pos =
"1 1 1"
;
Print
( pos.
InvMultiply4
(mat) );
>> <-2,0,-1>
vector::InvMultiply4
proto vector InvMultiply4(vector mat[4])
Invert-transforms position.
vector
Определения
EnConvert.c:106
Print
proto void Print(void var)
Prints content of variable to console/log.
Используется в
OnUpdate()
.
vector
Создано системой
1.13.2