Floatdiv
From SA-MP Wiki
floatdiv
Note: This function name starts with a lowercase letter. |
Description:
Divide one float by another one. Redundant as the division operator (/) does the same thing.
(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; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- floatadd: Adds two floats together.
- floatsub: Subtract a float from another float.
- floatmul: Multiply two floats.