[Back to reference](../README.md)

### `radians(deg)`
Converts the angle value `deg` from the range -180 to 180 in the range -PI to PI.

#### Example:

The variable angle will contain 4.7124 (= 1,5 * PI).
```javascript
let angle = gmynd.radians(270);
```

