From 06bc7f34d7faefe169b9e5d711d0f9b74d5f3c4c Mon Sep 17 00:00:00 2001 From: Daniel_Cortez Date: Thu, 4 Oct 2018 23:05:27 +0700 Subject: [PATCH] Fix the descriptions for inverse trigonometric functions --- a_samp.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/a_samp.inc b/a_samp.inc index 146ca00..0088374 100755 --- a/a_samp.inc +++ b/a_samp.inc @@ -318,31 +318,31 @@ native CallLocalFunction(const function[], const format[], {Float,_}:...); /// The norm (length) of the provided vector as a float. native Float:VectorSize(Float:x, Float:y, Float:z); -/// Get the inversed value of a sine in radians. +/// Get the inversed value of a sine in degrees. /// The sine for which to find the angle for /// -/// The angle in radians. +/// The angle in degrees. native Float:asin(Float:value); -/// Get the inversed value of a cosine in radians. +/// Get the inversed value of a cosine in degrees. /// The cosine for which to find the angle for /// -/// The angle in radians. +/// The angle in degrees. native Float:acos(Float:value); -/// Get the inversed value of a tangent in radians. +/// Get the inversed value of a tangent in degrees. /// The tangent for which to find the angle for /// /// -/// The angle in radians. +/// The angle in degrees. native Float:atan(Float:value); -/// Get the multi-valued inversed value of a tangent in radians. +/// Get the multi-valued inversed value of a tangent in degrees. /// y size /// x size /// /// -/// The angle in radians. +/// The angle in degrees. native Float:atan2(Float:y, Float:x);