BIS fnc gridToPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 7: Line 6:


|gr1 = Positions |GROUP1=
|gr1 = Positions |GROUP1=
____________________________________________________________________________________________


| Converts grid coordinates to world position.
| Converts grid coordinates to world position.
{{Important|
{{Important|
Correct results outside of the map area are not guaranteed.}} |DESCRIPTION=
Correct results outside of the map area are not guaranteed.}} |DESCRIPTION=
____________________________________________________________________________________________


| gridPosition call [[BIS_fnc_gridToPos]] |SYNTAX=
| gridPosition call [[BIS_fnc_gridToPos]] |SYNTAX=
Line 19: Line 16:


| [[Array]] - to format [<nowiki/>[gridX, gridY], [gridWidth, gridHeight]] (all of [[Number]] type) |RETURNVALUE=
| [[Array]] - to format [<nowiki/>[gridX, gridY], [gridWidth, gridHeight]] (all of [[Number]] type) |RETURNVALUE=
____________________________________________________________________________________________


|x1= <code>_realPosition = "183221" [[call]] [[BIS_fnc_gridToPos]];</code> |EXAMPLE1=
|x1= <code>_realPosition = "183221" [[call]] [[BIS_fnc_gridToPos]];</code> |EXAMPLE1=


|x2= <code>_realPosition = "He11" [[call]] [[BIS_fnc_gridToPos]];</code> |EXAMPLE2=
|x2= <code>_realPosition = "He11" [[call]] [[BIS_fnc_gridToPos]];</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[mapGridPosition]] |SEEALSO=
| [[mapGridPosition]] |SEEALSO=

Revision as of 00:10, 17 January 2021

Hover & click on the images for description

Description

Description:
Converts grid coordinates to world position.
Correct results outside of the map area are not guaranteed.
Execution:
call
Groups:
Positions

Syntax

Syntax:
gridPosition call BIS_fnc_gridToPos
Parameters:
gridPosition: String - (Optional, default mapGridPosition position cameraOn) accepts both "024577" or "De82" format
Return Value:
Array - to format [[gridX, gridY], [gridWidth, gridHeight]] (all of Number type)

Examples

Example 1:
_realPosition = "183221" call BIS_fnc_gridToPos;
Example 2:
_realPosition = "He11" call BIS_fnc_gridToPos;

Additional Information

See also:
mapGridPosition

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section