Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

Difference between revisions of "makevectors"

From Quake Wiki

Line 5: Line 5:
 
Note that because these are global variables, running makevectors on another set of angles will destroy the previously calculated vectors.
 
Note that because these are global variables, running makevectors on another set of angles will destroy the previously calculated vectors.
 
====Parameters:====
 
====Parameters:====
:None
+
:<code>angles</code> - The angles that will be used to generate the vectors
 
====Returns:====
 
====Returns:====
 
:void
 
:void
  
 
[[Category:QuakeC Function]]
 
[[Category:QuakeC Function]]

Revision as of 00:56, 25 March 2013

Syntax:

void makevectors(vector angles)

Creates relative forward, right and up vectors with length 1 from angles. These 3 directional vectors are stored in the global variables v_forward, v_right and v_up respectively. Note that because these are global variables, running makevectors on another set of angles will destroy the previously calculated vectors.

Parameters:

angles - The angles that will be used to generate the vectors

Returns:

void