summaryrefslogtreecommitdiffstats
path: root/Smoke/snowman.c
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2007-11-28 13:05:19 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2007-11-28 13:05:19 (GMT)
commitb7797f2d2229b7ac0837b642d7ead82096ddb147 (patch)
tree50c5e26d80aba9dba5269757d2e52b0bcb29f969 /Smoke/snowman.c
parent3b1c743de30bf7924bef1cc234f5326aa49804b0 (diff)
download2iv35-b7797f2d2229b7ac0837b642d7ead82096ddb147.zip
2iv35-b7797f2d2229b7ac0837b642d7ead82096ddb147.tar.gz
2iv35-b7797f2d2229b7ac0837b642d7ead82096ddb147.tar.bz2
Merged version
Diffstat (limited to 'Smoke/snowman.c')
-rw-r--r--Smoke/snowman.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Smoke/snowman.c b/Smoke/snowman.c
index 4c86532..e876ff4 100644
--- a/Smoke/snowman.c
+++ b/Smoke/snowman.c
@@ -141,13 +141,16 @@ void renderScene(void) {
// Draw 36 SnowMen
- for(i = -3; i < 3; i++)
+ for(i = -3; i < 3; i++) {
for(j = -3; j < 3; j++) {
glPushMatrix();
glTranslatef(i*10.0,0,j * 10.0);
glCallList(snowman_display_list);;
glPopMatrix();
}
+ }
+
+ glutSolidTeapot(1.5);
glutSwapBuffers();
}