BIS fnc inAngleSector: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (template:command argument fix)
Line 10: Line 10:
|Checks if a position lies within an angle sector.<br>
|Checks if a position lies within an angle sector.<br>
[[Image: BIS fnc inAngleSector.jpg|700px]]
[[Image: BIS fnc inAngleSector.jpg|700px]]
|= Description
|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [center, centerAngle, sectorWidth, position] call '''BIS_fnc_inAngleSector''' |= Syntax
| [center, centerAngle, sectorWidth, position] call '''BIS_fnc_inAngleSector''' |SYNTAX=
|p1= center : [[Array]] - Center position  |= Parameter 1
|p1= center : [[Array]] - Center position  |= Parameter 1
|p2= centerAngle : [[Number]] - Defines the center angle of the sector  |= Parameter 2
|p2= centerAngle : [[Number]] - Defines the center angle of the sector  |= Parameter 2
Line 19: Line 19:
|p4= position: [[Array]] - The position which should be checked  |= Parameter 4
|p4= position: [[Array]] - The position which should be checked  |= Parameter 4


| [[Boolean]]: Returns [[true]] if the position lies within sector|= Return value
| [[Boolean]]: Returns [[true]] if the position lies within sector|RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
|x1=<code>[ [[position]] [[player]], [[getDir]] [[player]], 30, [[position]] enemy_tank ] [[call]] [[BIS_fnc_inAngleSector]];</code> |=  
|x1=<code>[ [[position]] [[player]], [[getDir]] [[player]], 30, [[position]] enemy_tank ] [[call]] [[BIS_fnc_inAngleSector]];</code> |=  
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| |SEEALSO=


}}
}}

Revision as of 12:28, 7 April 2019


Hover & click on the images for description

Description

Description:
Checks if a position lies within an angle sector.
BIS fnc inAngleSector.jpg
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[center, centerAngle, sectorWidth, position] call BIS_fnc_inAngleSector
Parameters:
center : Array - Center position
centerAngle : Number - Defines the center angle of the sector
sectorWidth: Number - Defines the width of the sector in degrees
position: Array - The position which should be checked
Return Value:
Boolean: Returns true if the position lies within sector

Examples

Example 1:
[ position player, getDir player, 30, position enemy_tank ] call BIS_fnc_inAngleSector;

Additional Information

See also:
See also needed

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