From 2a61fbc11f8ae9f991a99c5a5357557722b2baf8 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 21:09:50 +0100 Subject: [PATCH] degreesToRadians header --- src/c/funktionen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index b6e14ed..54c545a 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -53,4 +53,6 @@ float arcCosine(float x); // Function to calculate the arc tangent of a value and return the result in radians float arcTangent(float x); +// Function to convert degrees to radians +float degreesToRadians(float x); #endif \ No newline at end of file