BIS fnc dotProduct: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma2 |Game name=
| arma2


|1.00|Game version=
|1.00


|gr1 = Vectors |GROUP1=
|gr1 = Vectors
| Dot product of two vectors. {{Feature|arma3|In {{arma3}} use [[vectorDotProduct]]}} |DESCRIPTION=
| Dot product of two vectors. {{Feature|arma3|In {{arma3}} use [[vectorDotProduct]]}}


| [vector1, vector2] call '''BIS_fnc_dotProduct'''; |SYNTAX=
| [vector1, vector2] call '''BIS_fnc_dotProduct''';


|p1= vector1: [[Array]] |PARAMETER1=
|p1= vector1: [[Array]]


|p2= vector2: [[Array]] |PARAMETER2=
|p2= vector2: [[Array]]


| [[Number]] |RETURNVALUE=
| [[Number]]




|x1= <code>[[1,2,3], [1,2,3]] call '''BIS_fnc_dotProduct'''; ''//Returns: 1*1+2*2+3*3 = 14''</code> |Example1=
|x1= <code>[[1,2,3], [1,2,3]] call '''BIS_fnc_dotProduct'''; ''//Returns: 1*1+2*2+3*3 = 14''</code>


|x2= <code>[[1,2,3,4], [1,2,3,4]] call '''BIS_fnc_dotProduct'''; ''//Returns: 1*1+2*2+3*3+4*4 = 30''</code> |EXAMPLE2=
|x2= <code>[[1,2,3,4], [1,2,3,4]] call '''BIS_fnc_dotProduct'''; ''//Returns: 1*1+2*2+3*3+4*4 = 30''</code>


| [[vectorDotProduct]] |SEEALSO=
| [[vectorDotProduct]]


}}
}}

Revision as of 00:03, 18 January 2021

Hover & click on the images for description

Description

Description:
Dot product of two vectors.
Arma 3
In Arma 3 use vectorDotProduct
Execution:
call
Groups:
Vectors

Syntax

Syntax:
[vector1, vector2] call BIS_fnc_dotProduct;
Parameters:
vector1: Array
vector2: Array
Return Value:
Number

Examples

Example 1:
[[1,2,3], [1,2,3]] call BIS_fnc_dotProduct; //Returns: 1*1+2*2+3*3 = 14
Example 2:
[[1,2,3,4], [1,2,3,4]] call BIS_fnc_dotProduct; //Returns: 1*1+2*2+3*3+4*4 = 30

Additional Information

See also:
vectorDotProduct

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


Bottom Section