VEC_Add


C Specification

#include <nitro/fx/fx_vec.h>

void VEC_Add(
    const VecFx32 * a,
    const VecFx32 * b,
    VecFx32 * ab
);

Description

This function performs addition on VecFx32 type vectors.

a, b, and ab can be pointers to the same vector.

Arguments

a The pointer to a vector.
b The pointer to a vector.
ab Sum of vector *a and vector *b.

Return Values

None.

See Also

VecFx32, VEC_Subtract

Revision History

01/19/2004 Initial version