2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2017-06-08 13:31:51 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Array <ARRAY>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_vector_fnc_getRelativeHeightLength
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
GVAR(pData) params ["_distanceP1", "_directionP1"];
|
|
|
|
_directionP1 params ["_azimuthP1", "_inclinationP1"];
|
2017-10-10 14:39:59 +00:00
|
|
|
private _distanceP2 = call FUNC(getDistance);
|
|
|
|
private _directionP2 = call FUNC(getDirection);
|
2019-05-27 15:46:07 +00:00
|
|
|
_directionP2 params ["_azimuthP2", "_inclinationP2"];
|
2015-01-17 18:25:12 +00:00
|
|
|
|
|
|
|
if (_distanceP1 < -999 || {_distanceP2 < -999}) exitWith {
|
|
|
|
[-1000, -1000] // return
|
|
|
|
};
|
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
private _position1 = [_distanceP1, _azimuthP1, _inclinationP1] call CBA_fnc_polar2vect;
|
|
|
|
private _position2 = [_distanceP2, _azimuthP2, _inclinationP2] call CBA_fnc_polar2vect;
|
|
|
|
|
|
|
|
private _length = _position1 distance2D _position2;
|
|
|
|
private _height = abs ((_position1 vectorDiff _position2) select 2);
|
|
|
|
|
2015-01-17 18:25:12 +00:00
|
|
|
[_height, _length]
|