mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-10 00:36:40 +02:00
add radians degrees
This commit is contained in:
1
src/degrees.scad
Normal file
1
src/degrees.scad
Normal file
@@ -0,0 +1 @@
|
|||||||
|
function degrees(radians) = 180 / PI * radians;
|
@@ -10,6 +10,8 @@ dotSCAD 3.0 Dev
|
|||||||
|
|
||||||
New modules/functions
|
New modules/functions
|
||||||
|
|
||||||
|
- `degrees`
|
||||||
|
- `radians`
|
||||||
- `angle_between`
|
- `angle_between`
|
||||||
- `polar_coordinate`
|
- `polar_coordinate`
|
||||||
- `spherical_coordinate`
|
- `spherical_coordinate`
|
||||||
|
1
src/radians.scad
Normal file
1
src/radians.scad
Normal file
@@ -0,0 +1 @@
|
|||||||
|
function radians(degrees) = PI / 180 * degrees;
|
Reference in New Issue
Block a user