BIS fnc vectorMultiply: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ :\\\-\/|()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Some wiki formatting)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function
| arma2|1.00|gr1= Vectors| Multiplies 3D vector by a scalar. {{Feature|arma3|Use [[vectorMultiply]] instead.}}| [vector, factor] call [[BIS_fnc_vectorMultiply]]|p1= vector: [[Array]] of [[Number|Numbers]] - to format [x,y,z]|p2= factor: [[Number]]| [[Array]] of [[Number|Numbers]] - result vector|x1= <code>_newVector = [<nowiki/>[1,2,3], 3] [[call]] [[BIS_fnc_vectorMultiply]]; {{codecomment|// returns [3,6,9]}}</code>|seealso= [[vectorMultiply]] [[BIS_fnc_vectorDivide]]
}}


|game1= arma2
|version1= 1.00
|game2= arma2oa
|version2= 1.50
|game3= tkoh
|version3= 1.00
|game4= arma3
|version4= 0.50
|gr1= Vectors
|descr= Multiplies 3D vector by a scalar. {{Feature|arma3|Use [[vectorMultiply]] instead.}}
|s1= [vector, factor] call [[BIS_fnc_vectorMultiply]]
|p1= vector: [[Array]] of [[Number]]s - to format [x,y,z]
|p2= factor: [[Number]]


|r1= [[Array]] of [[Number]]s - result vector


|x1= <sqf>private _newVector = [[1,2,3], 3] call BIS_fnc_vectorMultiply; // returns [3,6,9]</sqf>


[[Category:{{Name|arma2}}: Functions|{{uc:vectorMultiply}}]]
|seealso= [[vectorMultiply]] [[BIS_fnc_vectorDivide]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:vectorMultiply}}]]
}}
[[Category:{{Name|tkoh}}: Functions|{{uc:vectorMultiply}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:vectorMultiply}}]]

Latest revision as of 15:15, 13 July 2022

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:
private _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