@ -169,3 +169,8 @@ float squareRootPlusOne(float x) {
float cubeRootPlusOne(float x) {
return cbrt(x) + 1;
}
// Function to calculate the sine of an angle in degrees
float sineDegrees(float x) {
return sin(degreesToRadians(x));