Add rads_to_degrees snippet

This commit is contained in:
Angelos Chalaris
2019-08-20 15:58:57 +03:00
parent 5c7b7751d5
commit b2fd0b2575

View File

@ -0,0 +1,20 @@
---
title: rads_to_degrees
tags: math,beginner
---
Converts an angle from radians to degrees.
Use `math.pi` and the radian to degree formula to convert the angle from radians to degrees.
```py
import math
def rads_to_degrees(rad):
return (rad * 180.0) / math.pi
```
```py
import math
rads_to_degrees(math.pi / 2) # 90.0
```