Update vector.inc

This commit is contained in:
Hattrick HttrckCldHKS 2018-09-05 02:27:12 +03:00 committed by GitHub
parent f4583ced87
commit 91cdccb90f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,12 +36,12 @@ native get_distance(const origin1[3], const origin2[3]);
/** /**
* Calculates the distance between two input float vectors. * Calculates the distance between two input float vectors.
* *
* @param origin1 The first vector * @param Origin1 The first vector
* @param origin2 The second vector * @param Origin2 The second vector
* *
* @return The distance between two input vectors * @return The distance between two input vectors
*/ */
native Float:get_distance_f(const Float:origin1[3], const Float:origin2[3]); native Float:get_distance_f(const Float:Origin1[3], const Float:Origin2[3]);
/** /**
* Calculates velocity in the direction player is looking. * Calculates velocity in the direction player is looking.