Floatdiv
From SA-MP Wiki
[edit]
floatdiv
![]() | Note: This function name starts with a lowercase letter. |
Description:
Divide one float by another one.
![]() Note | This function is rather redundant, for it is no different than the conventional division operator (/). |
(Float:dividend, Float:divisor)
Float:dividend | First float. |
Float:divisor | Second float (dividates the first float.) |
Return Values:
The quotient of the two given floats.
Example Usage:
public OnGameModeInit() { new Float:Number1 = 8.05, Float:Number2 = 3.5; //Declares two floats, Number1 (8.05) and Number2 (3.5) new Float:Quotient; Quotient = floatdiv(Number1, Number2); //Saves the quotient(=8.05/3.5 = 2.3) of Number1 and Number2 in the float "Quotient" return 1; }
[edit]
Related Functions
The following functions may be helpful as they relate to this function in one way or another.
- floatadd: Adds two floats together.
- floatsub: Subtract a float from another float.
- floatmul: Multiply two floats.