-
-
Notifications
You must be signed in to change notification settings - Fork 18
degtorad
Vašek edited this page Jan 13, 2019
·
4 revisions
Converts given value in degrees to radians.
degtorad(x)
Argument | Description |
---|---|
double x |
The angle in degrees |
Returns: double
This function converts given x
in degrees to radians.
double value;
value = degtorad(90);
This function will set value
to 1,570797, which is equal to pi/2.
Back to number_functions