convert_angle()
Learn how to use the convert_angle() function to convert an angle input value from one unit to another.
Convert an angle value from one unit to another.
Syntax
convert_angle(value,from,to)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
value | real | ✔️ | The value to be converted. |
from | string | ✔️ | The unit to convert from. For possible values, see Conversion units. |
to | string | ✔️ | The unit to convert to. For possible values, see Conversion units. |
Conversion units
- Arcminute
- Arcsecond
- Centiradian
- Deciradian
- Degree
- Gradian
- Microdegree
- Microradian
- Millidegree
- Milliradian
- Nanodegree
- Nanoradian
- NatoMil
- Radian
- Revolution
- Tilt
Returns
Returns the input value converted from one angle unit to another. Invalid units return null.
Example
print result = convert_angle(1.2, 'Degree', 'Arcminute')
Output
| result |
|---|
| 72 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.