From: Nigel Stewart Date: Wed, 18 Feb 2004 02:51:04 +0000 (+0000) Subject: Refinements to comments X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=d1d57758967d67f5588cd5d3ce49cb3073eae527;p=freeglut Refinements to comments git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@463 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/freeglut_geometry.c b/src/freeglut_geometry.c index 36f6a78..8122a5b 100644 --- a/src/freeglut_geometry.c +++ b/src/freeglut_geometry.c @@ -253,7 +253,7 @@ void FGAPIENTRY glutSolidSphere(GLdouble radius, GLint slices, GLint stacks) } /* - * Draws a solid sphere + * Draws a wire sphere */ void FGAPIENTRY glutWireSphere(GLdouble radius, GLint slices, GLint stacks) { @@ -531,7 +531,7 @@ void FGAPIENTRY glutSolidCylinder(GLdouble radius, GLdouble height, GLint slices /* * Draws a wire cylinder - */ + */ void FGAPIENTRY glutWireCylinder(GLdouble radius, GLdouble height, GLint slices, GLint stacks) { int i,j; @@ -586,7 +586,7 @@ void FGAPIENTRY glutWireCylinder(GLdouble radius, GLdouble height, GLint slices, } /* - * + * Draws a wire torus */ void FGAPIENTRY glutWireTorus( GLdouble dInnerRadius, GLdouble dOuterRadius, GLint nSides, GLint nRings ) { @@ -664,7 +664,7 @@ void FGAPIENTRY glutWireTorus( GLdouble dInnerRadius, GLdouble dOuterRadius, GLi } /* - * + * Draws a solid torus */ void FGAPIENTRY glutSolidTorus( GLdouble dInnerRadius, GLdouble dOuterRadius, GLint nSides, GLint nRings ) {