BIS fnc vectorMultiply: Difference between revisions

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


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


|gr1= Vectors |GROUP1=
|gr1= Vectors |GROUP1=
____________________________________________________________________________________________


| Multiplies 3D vector by a scalar. {{Feature|arma3|Use [[vectorMultiply]] instead.}}|Description=
| Multiplies 3D vector by a scalar. {{Feature|arma3|Use [[vectorMultiply]] instead.}}|Description=
____________________________________________________________________________________________


| [vector, factor] call [[BIS_fnc_vectorMultiply]] |Syntax=
| [vector, factor] call [[BIS_fnc_vectorMultiply]] |Syntax=
Line 19: Line 16:


| [[Array]] of [[Number|Numbers]] - result vector |Return value=
| [[Array]] of [[Number|Numbers]] - result vector |Return value=
____________________________________________________________________________________________


|x1= <code>_newVector = [<nowiki/>[1,2,3], 3] [[call]] [[BIS_fnc_vectorMultiply]]; {{codecomment|// returns [3,6,9]}}</code> |Example 1=
|x1= <code>_newVector = [<nowiki/>[1,2,3], 3] [[call]] [[BIS_fnc_vectorMultiply]]; {{codecomment|// returns [3,6,9]}}</code> |Example 1=
____________________________________________________________________________________________


| [[vectorMultiply]] [[BIS_fnc_vectorDivide]] |See also=
| [[vectorMultiply]] [[BIS_fnc_vectorDivide]] |See also=

Revision as of 01:07, 17 January 2021

Hover & click on the images for description

Description

Description:
Multiplies 3D vector by a scalar.
Arma 3
Use vectorMultiply instead.
Execution:
call
Groups:
Vectors

Syntax

Syntax:
[vector, factor] call BIS_fnc_vectorMultiply
Parameters:
vector: Array of Numbers - to format [x,y,z]
factor: Number
Return Value:
Array of Numbers - result vector

Examples

Example 1:
_newVector = [[1,2,3], 3] call BIS_fnc_vectorMultiply; // returns [3,6,9]

Additional Information

See also:
vectorMultiply BIS_fnc_vectorDivide

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