xs_vec_len_2d
- Синтаксис
-
stock Float:xs_vec_len_2d(const Float:vec[]) { return xs_sqrt(vec[0]*vec[0] + vec[1]*vec[1]); }
Переменная | Описание |
---|---|
vec |
The vector to compute the length of. |
- Описание
- Computes the length of a 2D vector.
- Возвращает
- The length of the input vector.