diff options
Diffstat (limited to 'progs/trivial/point-param.c')
-rw-r--r-- | progs/trivial/point-param.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/trivial/point-param.c b/progs/trivial/point-param.c index c50b7cb1034..be4328d9995 100644 --- a/progs/trivial/point-param.c +++ b/progs/trivial/point-param.c @@ -80,13 +80,13 @@ static void Draw(void) glBegin(GL_POINTS); glColor3f(1,0,0); - glVertex3f( 0.9, -0.9, -30.0); + glVertex3f( 0.9, -0.9, -10.0); glColor3f(1,1,0); - glVertex3f( 0.9, 0.9, -30.0); + glVertex3f( 0.9, 0.9, -5.0); glColor3f(1,0,1); glVertex3f(-0.9, 0.9, -30.0); glColor3f(0,1,1); - glVertex3f(-0.9, -0.9, -30.0); + glVertex3f(-0.9, -0.9, -20.0); glEnd(); glFlush(); |