-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext_test.py
79 lines (69 loc) · 2.1 KB
/
text_test.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# _*_ coding: utf-8 -*-
from OpenGL.GL import *
from OpenGL.GLUT import *
from OpenGL.GLU import *
import sys
class OpenGLWindow:
# 初始化
def __init__(self, width=640, height=480, title='PyOpenGL'):
# 传递命令行参数
glutInit(sys.argv)
# 设置显示模式
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH)
# 设置窗口大小
glutInitWindowSize(width, height)
# 创建窗口
self.window = glutCreateWindow(title)
# 设置场景绘制函数
glutDisplayFunc(self.Draw)
# 调用OpenGL初始化函数
self.InitGL(width, height)
# 绘制场景
def Draw(self):
# 清除屏幕和深度缓存
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
# 重置观察矩阵
glLoadIdentity()
# 移动位置
glTranslatef(0.0, 0.0, -1.0)
# 设置颜色为绿色
glColor3f(0.0, 1.0, 0.0)
# 定位文字
glRasterPos2f(0.0, 0.0)
# 绘制文字
self.DrawText('PyOpenGL')
# 交换缓存
glutSwapBuffers()
# 绘制文字函数
def DrawText(self, string):
# 循环处理字符串
for c in string:
# 输出文字
glutBitmapCharacter(GLUT_BITMAP_8_BY_13, ord(c))
# OpenGL初始化函数
def InitGL(self, width, height):
# 设置为黑色背景
glClearColor(0.0, 0.0, 0.0, 0.0)
# 设置深度缓存
glClearDepth(1.0)
# 设置深度测试类型
glDepthFunc(GL_LESS)
# 允许深度测试
glEnable(GL_DEPTH_TEST)
# 启动平滑阴影
glShadeModel(GL_SMOOTH)
# 设置观察矩阵
glMatrixMode(GL_PROJECTION)
# 重置观察矩阵
glLoadIdentity()
# 设置屏幕宽高比
gluPerspective(45.0, float(width) / float(height), 0.1, 100.0)
# 设置观察矩阵
glMatrixMode(GL_MODELVIEW)
def MainLoop(self):
# 进入消息循环
glutMainLoop()
# 创建窗口
window = OpenGLWindow()
# 进入消息循环
window.MainLoop()