#include <nitro/fx/fx_vec.h>
void VEC_Fx16Add(
const VecFx16 * a,
const VecFx16 * b,
VecFx16 * ab
);
a | The pointer to a vector. |
b |
The pointer to a vector. |
ab |
The sum of vector *a and vector *b |
None.
This function performs addition of VecFx16
type vectors. a
, b
, and ab
can be pointers to the same vector.
02/16/2004 Initial version