Signature
stock xs_vec_neg(const Float:vec[], Float:out[]){ out[0] = -vec[0]; out[1] = -vec[1]; out[2] = -vec[2];}
Description
Negates a vector.
Parameters
- vec — The vector to negate.
- out — The output vector. Can be the same as the input vector.
No return value