Removed axes

This commit is contained in:
Thomas FORGIONE 2016-12-01 11:48:32 +01:00
parent 5f58043207
commit 2077cfb311
No known key found for this signature in database
GPG Key ID: 2A210FFC062E00C3
1 changed files with 11 additions and 11 deletions

View File

@ -111,17 +111,17 @@ def main(args):
gl.glPushMatrix()
controls.apply()
gl.glBegin(gl.GL_LINES)
gl.glColor3f (1.0,0.0,0.0)
gl.glVertex3f(0.0,0.0,0.0)
gl.glVertex3f(2.0,0.0,0.0)
gl.glColor3f (0.0,1.0,0.0)
gl.glVertex3f(0.0,0.0,0.0)
gl.glVertex3f(0.0,2.0,0.0)
gl.glColor3f (0.0,0.0,1.0)
gl.glVertex3f(0.0,0.0,0.0)
gl.glVertex3f(0.0,0.0,2.0)
gl.glEnd()
# gl.glBegin(gl.GL_LINES)
# gl.glColor3f (1.0,0.0,0.0)
# gl.glVertex3f(0.0,0.0,0.0)
# gl.glVertex3f(2.0,0.0,0.0)
# gl.glColor3f (0.0,1.0,0.0)
# gl.glVertex3f(0.0,0.0,0.0)
# gl.glVertex3f(0.0,2.0,0.0)
# gl.glColor3f (0.0,0.0,1.0)
# gl.glVertex3f(0.0,0.0,0.0)
# gl.glVertex3f(0.0,0.0,2.0)
# gl.glEnd()
shader.bind()
model.draw()