diff --git a/src/c/funktionen.c b/src/c/funktionen.c index d741c2b..b069db3 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -126,3 +126,9 @@ float arcTangent(float x) { float degreesToRadians(float x) { return x * (M_PI / 180); } + +// Function to convert radians to degrees +float radiansToDegrees(float x) { + return x * (180 / M_PI); +} +