mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
16 lines
222 B
Markdown
16 lines
222 B
Markdown
|
# degrees
|
||
|
|
||
|
Converts a radian measurement to the corresponding value in degrees.
|
||
|
|
||
|
**Since:**: 3.0
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
- `radians` : The radians value.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
use <util/degrees.scad>;
|
||
|
|
||
|
assert(degrees(PI) == 180);
|