X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_geometry.c;fp=src%2Ffreeglut_geometry.c;h=5468551ceb70bf4e5a7910dca6a873febd75b6de;hb=d6ccf7c81bdad11e6902a258e8e21fdbe6b9f968;hp=b81a05ff6b7dadbf0f80d9f7e50c9f51bbb9af01;hpb=0c26580b96f8e2f431489049be61077bd24dd21d;p=freeglut diff --git a/src/freeglut_geometry.c b/src/freeglut_geometry.c index b81a05f..5468551 100644 --- a/src/freeglut_geometry.c +++ b/src/freeglut_geometry.c @@ -197,7 +197,7 @@ void FGAPIENTRY glutSolidSphere(GLdouble radius, GLint slices, GLint stacks) glVertex3d(0,0,radius); for (j=slices; j>=0; j--) - { + { glNormal3d(cost1[j]*r1, sint1[j]*r1, z1 ); glVertex3d(cost1[j]*r1*radius, sint1[j]*r1*radius, z1*radius); } @@ -263,7 +263,7 @@ void FGAPIENTRY glutWireSphere(GLdouble radius, GLint slices, GLint stacks) double x,y,z; /* Pre-computed circle */ - + double *sint1,*cost1; double *sint2,*cost2; circleTable(&sint1,&cost1,-slices );