- This wiki is out of date, use the continuation of this wiki instead
Pow
From FenixWiki
Contents |
Definition
FLOAT pow ( <FLOAT base> , <FLOAT power> )
Returns base to the power of power (base^power).
Parameters
FLOAT base | - The base. |
FLOAT power | - The power. |
Returns
FLOAT : base to the power of power (base^power).
Example
Program powerful; Global float value1; int value2; Begin write_float(0,0, 0,0,&value1); write_int(0,0,10,0,&value2); value1 = pow(2.3,4.6); value2 = pow(2,3); Repeat frame; Until(key(_ESC)) End
Used in example: write_float(), write_int(), pow(), key()
Math Functions | |
• Abs() • Acos() • Asin() • Atan() • Cos() • Fget_angle() • Fget_dist() • Get_distx() • Get_disty() • Pow() • Rand() • Rand_seed() • Sin() • Sqrt() • Tan() • |