From 3cf0f826ba0679731f560fb8e21ea3da5d3c5439 Mon Sep 17 00:00:00 2001 From: Tyler McGurrin Date: Fri, 29 Nov 2024 13:54:49 -0500 Subject: [PATCH] ipdate rotation --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 23d8288..5af2f9f 100644 --- a/src/main.c +++ b/src/main.c @@ -90,7 +90,7 @@ void Draw() { Vertices[7] ); - glRotatef(RT,1,0,1); + glRotatef(RT,1,.5,.5); glutSwapBuffers(); } @@ -101,7 +101,7 @@ int main(int argC, char *argV[]) //glutInitWindowPosition(0,0); //Readd this later (TM) glutInitWindowSize(512,512); //window size glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); //display mode - glutCreateWindow("OpenGL Test"); //make window + glutCreateWindow("OpenGL C"); //make window Init(); glutDisplayFunc(Draw);