3 * @brief The snowball module.
5 * Copyright 2001, 2008 David Ashley <dashxdr@gmail.com>
6 * Copyright 2008 Stephen M. Webb <stephen.webb@bregmasoft.ca>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of Version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #if defined(_WIN32) && !defined(__CYGWIN__)
24 # define WIN32_LEAN_AND_MEAN 1
33 void makeuvsphere(float size
)
37 float x
[USIDES
],z
[USIDES
];
48 glEnable(GL_NORMALIZE
);
58 glBegin(GL_QUAD_STRIP
);
59 for(j
=0;j
<USIDES
+1;++j
)
61 t
=(j
<USIDES
) ? j
: j
-USIDES
;
68 a
=(j
-0.5f
)*PI
*2.0f
/USIDES
;
69 glNormal3f(cosf(a
)*s
,c
,sinf(a
)*s
);
71 glVertex3f(x
[t
]*s2
,c2
*size
,z
[t
]*s2
);
72 glVertex3f(x
[t
]*s1
,c1
*size
,z
[t
]*s1
);