inPolygon: Difference between revisions
No edit summary |
BrettMayson (talk | contribs) mNo edit summary |
||
| Line 10: | Line 10: | ||
|s1= position [[inPolygon]] polygon | |s1= position [[inPolygon]] polygon | ||
|p1= position: | |p1= position: [[Position#Introduction|Position3D]], {{GVI|arma3|2.14|size= 0.75}} [[Object]] or [[Group]] | ||
|p2= polygon: [[Array]] of [[Position#Introduction|Position3D]] - positions in format: [position1, position2...., positionN] | |p2= polygon: [[Array]] of [[Position#Introduction|Position3D]] - positions in format: [position1, position2...., positionN] | ||
Latest revision as of 08:55, 2 January 2026
Description
- Description:
- Checks whether position is inside given polygon. The polygon is only checked in 2 dimensions, i.e. the value of Z is ignored.
- Groups:
- Positions
Syntax
- Syntax:
- position inPolygon polygon
- Parameters:
- position: Position3D,
2.14 Object or Group - polygon: Array of Position3D - positions in format: [position1, position2...., positionN]
- Return Value:
- Boolean
Examples
- Example 1:
- Example 2:
- private _markerName = "_USER_DEFINED #0/0/1"; private _xy2DPositions = markerPolyline _markerName; private _positions = []; // let's convert these x,y coordinates to "normal" position arrays for "_i" from 0 to count _xy2DPositions - 1 step 2 do { _positions pushBack [_xy2DPositions select _i, _xy2DPositions select (_i + 1), 0]; }; player inPolygon _positions; // true if in the drawn shape, false if not
Additional Information
- See also:
- in inArea inAreaArray drawPolygon
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note