Browse Source

cosine Funktion

remotes/origin/Khaled
Khaled 11 months ago
parent
commit
7b09b34e02
  1. 5
      src/c/funktionen.c

5
src/c/funktionen.c

@ -83,4 +83,9 @@ int characterAppearanceInString(char c, char string[]) {
// Function to calculate the sine of an angle in radians // Function to calculate the sine of an angle in radians
float sine(float x) { float sine(float x) {
return sin(x); return sin(x);
}
// Function to calculate the cosine of an angle in radians
float cosine(float x) {
return cos(x);
} }
Loading…
Cancel
Save