ACE3/addons/maptools/functions/fnc_calculateMapScale.sqf

19 lines
420 B
Plaintext
Raw Normal View History

/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
* Returns the equivalent of 100m in screen coordinates
*
2015-04-07 20:01:44 +00:00
* Arguments:
* None
*
* Return value:
2015-04-07 20:01:44 +00:00
* No
*
* Public: No
*/
2015-01-15 21:50:48 +00:00
#include "script_component.hpp"
private _pos = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
private _screenOffset = ((findDisplay 12) displayCtrl 51) posWorldToScreen [(_pos select 0) + 100, (_pos select 1)];
(_screenOffset select 0) - 0.5