ACE3/addons/common/functions/fnc_translateToModelSpace.sqf

24 lines
432 B
Plaintext
Raw Normal View History

2015-09-19 22:55:58 +00:00
/*
* Author: ?
* ?
*
* Arguments:
* ?
*
* Return Value:
* ?
*
* Public: ?
*/
2015-05-14 22:12:40 +00:00
#include "script_component.hpp"
2015-09-19 22:55:58 +00:00
params ["_object", "_matrix", "_offset"];
2015-05-14 22:12:40 +00:00
private _origin = getPosASL _object;
2015-09-19 22:55:58 +00:00
_matrix params ["_xVec", "_yVec", "_zVec"];
2015-09-19 22:55:58 +00:00
_offset params ["_x", "_y", "_z"];
2015-09-19 22:55:58 +00:00
(_xVec vectorMultiply _x) vectorAdd (_yVec vectorMultiply _y) vectorAdd (_zVec vectorMultiply _z) vectorAdd _origin // return