vectorMagnitudeSqr: Difference between revisions
Lou Montana (talk | contribs) |
m (Unify version info for vector commands) |
||
(16 intermediate revisions by one other user not shown) | |||
Line 6: | Line 6: | ||
|gr2= Math - Vectors | |gr2= Math - Vectors | ||
|descr=Squared magnitude of a 3D vector. | |descr=Squared magnitude of a 3D vector.<br> | ||
{{Feature|GVI|arma3|2.14|Since {{GVI|arma3|2.14|size= 0.75}} any count of numbers is valid.<br> | |||
Before {{GVI|arma3|2.14|size= 0.75}}, the argument had to be vector 3D, or {{GVI|arma3|2.00|size= 0.75}} 2D (With z coordinate defaulted to 0)}} | |||
|s1= [[vectorMagnitudeSqr]] vector | |s1= [[vectorMagnitudeSqr]] vector | ||
|p1= vector: [[Array]] | |p1= vector: [[Array]] of [[Number]]s | ||
|r1= [[Number]] | |r1= [[Number]] | ||
|x1= < | |x1= <sqf>_sizeSqr = vectorMagnitudeSqr [0,3,4]; // returns 25</sqf> | ||
|seealso= [[vectorAdd]] [[vectorDiff]] [[vectorCrossProduct]] [[vectorDotProduct]] [[vectorCos]] | |seealso= [[vectorAdd]] [[vectorDiff]] [[vectorCrossProduct]] [[vectorDotProduct]] [[vectorCos]] [[vectorMagnitude]] [[vectorMultiply]] [[vectorDistance]] [[vectorDistanceSqr]] [[vectorDir]] [[vectorUp]] [[setVectorDir]] [[setVectorUp]] [[setVectorDirAndUp]] [[vectorNormalized]] [[vectorFromTo]] | ||
}} | }} | ||
Line 26: | Line 28: | ||
<dd class="note"> | <dd class="note"> | ||
{{GVI|arma3|1.22}} Algorithm: | {{GVI|arma3|1.22}} Algorithm: | ||
< | <sqf> | ||
Result = (x ^ 2) + (y ^ 2) + (z ^ 2);</ | Vector = [x,y,z]; | ||
Result = (x ^ 2) + (y ^ 2) + (z ^ 2); | |||
</sqf> | |||
It is recommended to use [[vectorMagnitudeSqr]] instead of [[BIS_fnc_magnitudeSqr]]. | It is recommended to use [[vectorMagnitudeSqr]] instead of [[BIS_fnc_magnitudeSqr]]. | ||
</dl> | </dl> |
Latest revision as of 17:34, 18 March 2025
Description
- Description:
- Squared magnitude of a 3D vector.
- Groups:
- Math - Vectors
Syntax
- Syntax:
- vectorMagnitudeSqr vector
- Parameters:
- vector: Array of Numbers
- Return Value:
- Number
Examples
- Example 1:
Additional Information
- See also:
- vectorAdd vectorDiff vectorCrossProduct vectorDotProduct vectorCos vectorMagnitude vectorMultiply vectorDistance vectorDistanceSqr vectorDir vectorUp setVectorDir setVectorUp setVectorDirAndUp vectorNormalized vectorFromTo
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
- Posted on 28 Jun, 2014
- ffur2007slx2_5
-
1.22 Algorithm: It is recommended to use vectorMagnitudeSqr instead of BIS_fnc_magnitudeSqr.