Vector3D

From Bohemia Interactive Community
Revision as of 22:28, 23 January 2008 by Kronzky (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Format:

[x, z, y]


Description:

Represents a 3-dimensional vector in space.

Each value can range from -1 to +1.


The return array can be processed-converted into degrees as follows:

_vdir = player weaponDirection (primaryWeapon player); 
_adir= (_vdir select 0) atan2 (_vdir select 1);