ACE3/addons/vector/functions/fnc_getHeightDistance.sqf

30 lines
503 B
Plaintext
Raw Normal View History

/*
* Author: commy2
*
*
* Arguments:
* None
*
* Return Value:
* Array <ARRAY>
*
* Example:
* call ace_vector_fnc_getHeightDistance
*
* Public: No
*/
2015-01-15 16:24:19 +00:00
#include "script_component.hpp"
private _distance = call FUNC(getDistance);
private _direction = call FUNC(getDirection);
2015-01-15 16:24:19 +00:00
private _azimuth = _direction select 0;
private _inclination = _direction select 1;
2015-01-15 16:24:19 +00:00
if (_distance < -999) exitWith {
[-1000, -1000] // return
2015-01-15 16:24:19 +00:00
};
[sin _inclination * _distance, cos _inclination * _distance]