BIS fnc dotProduct: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *arma2 * * *\| *([0-1]\.[0-9]{2}) * \|game2" to "|game1= arma2 |version1= $1 |game2") |
Lou Montana (talk | contribs) m (Text replacement - " \[\[Category:\{\{Name|[a-z0-9]+\}\}: Functions\|\{\{uc:[a-zA-Z0-9]+\}\}\]\]" to "") |
||
Line 31: | Line 31: | ||
|seealso= [[vectorDotProduct]] | |seealso= [[vectorDotProduct]] | ||
}} | }} | ||
|||| | |||
Revision as of 23:00, 16 June 2021
Description
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
||||