码迷,mamicode.com
首页 > 其他好文 > 详细

pyglet----画一个矩形

时间:2015-06-27 22:41:01      阅读:1012      评论:0      收藏:0      [点我收藏+]

标签:

这里列出一种在窗口Window中画图的程序框架。。。。。。。。。。

#-*- coding:utf-8 -*-
from pyglet.gl import *

def draw_rect(x, y, width, height):
    glBegin(GL_LINE_LOOP)
    glVertex2f(x, y)
    glVertex2f(x + width, y)
    glVertex2f(x + width, y + height)
    glVertex2f(x, y + height)
    glEnd()
    

class Button():
    def draw(self):
        draw_rect(0.0,0.0,10.0,10.0)
        
class MyWindow(pyglet.window.Window):
    def __init__(self):
        super(MyWindow,self).__init__()
        #按钮
        self.button=Button()
        self.need_draw=[
                self.button,
                            ]
    def on_draw(self):
        print(g)
        self.clear()
        for draw_object in self.need_draw:
            draw_object.draw()
        

if __name__ == "__main__":
    wn=MyWindow()
pyglet.app.run()
    
        

 

pyglet----画一个矩形

标签:

原文地址:http://www.cnblogs.com/yinwei-space/p/4604685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!