ACE3/addons/maptools/functions/fnc_calculateMapScale.sqf

21 lines
440 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"
2015-04-17 23:13:09 +00:00
private ["_screenOffset", "_pos"];
2016-05-03 00:32:44 +00:00
_pos = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
2015-08-18 02:51:40 +00:00
_screenOffset = ((findDisplay 12) displayCtrl 51) posWorldToScreen [(_pos select 0) + 100, (_pos select 1)];
(_screenOffset select 0) - 0.5