BIS fnc getAngleDelta: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "| arma 3 |Game name=" to "| arma3 |Game name=")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


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


|gr1 = Geometry |GROUP1=
|gr1 = Geometry |GROUP1=
____________________________________________________________________________________________


| Returns the smallest difference between two angles in degrees.|DESCRIPTION=
| Returns the smallest difference between two angles in degrees.|DESCRIPTION=
____________________________________________________________________________________________


| [angleA, angleB] call [[BIS_fnc_getAngleDelta]] |SYNTAX=
| [angleA, angleB] call [[BIS_fnc_getAngleDelta]] |SYNTAX=
____________________________________________________________________________________________


|p1= angleA: [[Number]] - First angle|PARAMETER1=
|p1= angleA: [[Number]] - First angle|PARAMETER1=
|p2= angleB: [[Number]] - Second angle|PARAMETER2=
|p2= angleB: [[Number]] - Second angle|PARAMETER2=
____________________________________________________________________________________________


| [[Number]] - Angle delta|RETURNVALUE=
| [[Number]] - Angle delta|RETURNVALUE=
____________________________________________________________________________________________


|x1= <code>_delta = [90,193] [[call]] [[BIS_fnc_getAngleDelta]];//-103</code> |=
|x1= <code>_delta = [90,193] [[call]] [[BIS_fnc_getAngleDelta]];//-103</code> |=
____________________________________________________________________________________________


| [[tan]], [[cos]], [[sin]] |SEEALSO=
| [[tan]], [[cos]], [[sin]] |SEEALSO=

Revision as of 00:06, 17 January 2021

Hover & click on the images for description

Description

Description:
Returns the smallest difference between two angles in degrees.
Execution:
call
Groups:
Geometry

Syntax

Syntax:
[angleA, angleB] call BIS_fnc_getAngleDelta
Parameters:
angleA: Number - First angle
angleB: Number - Second angle
Return Value:
Number - Angle delta

Examples

Example 1:
_delta = [90,193] call BIS_fnc_getAngleDelta;//-103

Additional Information

See also:
tancossin

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