mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
386 B
Plaintext
17 lines
386 B
Plaintext
// by commy2
|
|
#include "script_component.hpp"
|
|
|
|
private ["_distance", "_direction", "_azimuth", "_inclination"];
|
|
|
|
_distance = call FUNC(getDistance);
|
|
_direction = call FUNC(getDirection);
|
|
|
|
_azimuth = _direction select 0;
|
|
_inclination = _direction select 1;
|
|
|
|
if (_distance < -999) exitWith {
|
|
[-1000, -1000] // return
|
|
};
|
|
|
|
[sin _inclination * _distance, cos _inclination * _distance]
|