From fe032b9509f27f8dd708cbc19ac5b5aac8fe4c06 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 20:24:36 +0100 Subject: [PATCH] cosine Funktion --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 40067b4..ae99a8c 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -38,5 +38,8 @@ int characterAppearanceInString(char c, char string[]); // Function to calculate the sine of an angle in radians float sine(float x); +// Function to calculate the cosine of an angle in radians +float cosine(float x); + #endif \ No newline at end of file