Update matrix.c

This commit is contained in:
darcagn 2024-02-18 23:34:59 +00:00
parent d92a5b1b07
commit eef1548914

View File

@ -174,8 +174,8 @@ void APIENTRY glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) {
}; };
float r = DEG2RAD * angle; float r = DEG2RAD * angle;
float c = fcos(r); float c = cosf(r);
float s = fsin(r); float s = sinf(r);
VEC3_NORMALIZE(x, y, z); VEC3_NORMALIZE(x, y, z);