File: gradient_background.py

package info (click to toggle)
k3d 0.8.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 40,692 kB
  • ctags: 39,695
  • sloc: cpp: 171,303; ansic: 24,129; xml: 6,995; python: 5,796; makefile: 726; sh: 22
file content (31 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#python

try:
  from OpenGL.GL import *

except:
  print "Couldn't load OpenGL module"

glDisable(GL_LIGHTING)

glMatrixMode(GL_MODELVIEW)
glPushMatrix()
glLoadIdentity()
  
glMatrixMode(GL_PROJECTION)
glPushMatrix()
glLoadIdentity()
glOrtho(-1, 1, -1, 1, 0, 10000)

glBegin(GL_POLYGON)
glColor3d(0.9, 0.9, 0.9)
glVertex3f(-1, 1, -9999)
glVertex3f(1, 1, -9999)
glColor3d(0.3, 0.3, 0.3)
glVertex3f(1, -1, -9999)
glVertex3f(-1, -1, -9999)
glEnd()

glPopMatrix()
glMatrixMode(GL_MODELVIEW)
glPopMatrix()