Signature
stock xs_vec_add(const Float:in1[], const Float:in2[], Float:out[]){ out[0] = in1[0] + in2[0]; out[1] = in1[1] + in2[1]; out[2] = in1[2] + in2[2];}
Description
Adds two vectors.
Parameters
- in1 — The first vector to add.
- in2 — The second vector to add.
- out — The output vector. Can be one of the input vectors.
No return value