ACE3/addons/common/functions/fnc_translateToModelSpace.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

27 lines
516 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: ACE-Team
* ?
*
* Arguments:
* <UNKNOWN>
*
* Return Value:
* Something <UNKNOWN>
*
* Example:
* [UNKNOWN] call ace_common_fnc_translateToModelSpace
*
* Public: No
*/
params ["_object", "_matrix", "_offset"];
private _origin = getPosASL _object;
_matrix params ["_xVec", "_yVec", "_zVec"];
_offset params ["_x", "_y", "_z"];
(_xVec vectorMultiply _x) vectorAdd (_yVec vectorMultiply _y) vectorAdd (_zVec vectorMultiply _z) vectorAdd _origin // return