Updated test programs with SDL_M_PI*

This commit is contained in:
Sam Lantinga
2022-11-25 10:57:12 -08:00
parent 05139f4a2e
commit 199423612c
3 changed files with 115 additions and 115 deletions

View File

@@ -127,7 +127,7 @@ rotate_matrix(float angle, float x, float y, float z, float *r)
float radians, c, s, c1, u[3], length;
int i, j;
radians = (float)(angle * M_PI) / 180.0f;
radians = (angle * SDL_M_PIf) / 180.0f;
c = SDL_cosf(radians);
s = SDL_sinf(radians);