BIS fnc crossProduct: 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


| Return the cross product of two 3D vectors. {{Feature|arma3|Use [[vectorCrossProduct]] instead.}}|Description=
| Return the cross product of two 3D vectors. {{Feature|arma3|Use [[vectorCrossProduct]] instead.}}


| [vector1, vector2] call [[BIS_fnc_crossProduct]] |Syntax=
| [vector1, vector2] call [[BIS_fnc_crossProduct]]


|p1= vector1: [[Array]] |Parameter 1=
|p1= vector1: [[Array]]


|p2= vector2: [[Array]] |Parameter 2=
|p2= vector2: [[Array]]


| [[Array]] |Return value=
| [[Array]]


|x1= <code>_product = [<nowiki/>[1,2,3], [3,2,1]] [[call]] [[BIS_fnc_crossProduct]];</code> |Example 1=
|x1= <code>_product = [<nowiki/>[1,2,3], [3,2,1]] [[call]] [[BIS_fnc_crossProduct]];</code>


| [[vectorCrossProduct]] |See also=
| [[vectorCrossProduct]]
}}
}}



Revision as of 23:38, 17 January 2021

Hover & click on the images for description

Description

Description:
Return the cross product of two 3D vectors.
Arma 3
Use vectorCrossProduct instead.
Execution:
call
Groups:
Vectors

Syntax

Syntax:
[vector1, vector2] call BIS_fnc_crossProduct
Parameters:
vector1: Array
vector2: Array
Return Value:
Array

Examples

Example 1:
_product = [[1,2,3], [3,2,1]] call BIS_fnc_crossProduct;

Additional Information

See also:
vectorCrossProduct

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