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

◆ GetCollisionBoxSize()

vector Hologram::GetCollisionBoxSize ( vector min_max[2])
inlineprotected

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

1079 {
1080 vector box_size = Vector(1,1,1);
1081
1082 box_size[0] = min_max[1][0] - min_max[0][0];
1083 box_size[2] = min_max[1][2] - min_max[0][2];
1084 box_size[1] = min_max[1][1] - min_max[0][1];
1085
1086 return box_size;
1087 }
proto native vector Vector(float x, float y, float z)
Vector constructor from components.

Перекрестные ссылки Vector().

Используется в GetProjectionDiameter(), GetProjectionRadius(), IsCollidingBBox() и IsCollidingGeometryProxy().