Python Language
Pyglet
Buscar..
Introducción
Pyglet es un módulo de Python utilizado para efectos visuales y de sonido. No tiene dependencias en otros módulos. Ver [pyglet.org] [1] para la información oficial. [1]: http://pyglet.org
Hola Mundo en Pyglet
import pyglet
window = pyglet.window.Window()
label = pyglet.text.Label('Hello, world',
font_name='Times New Roman',
font_size=36,
x=window.width//2, y=window.height//2,
anchor_x='center', anchor_y='center')
@window.event
def on_draw():
window.clear()
label.draw()
pyglet.app.run()
Instalación de Pyglet
Instala Python, entra en la línea de comandos y escribe:
Python 2:
pip install pyglet
Python 3:
pip3 install pyglet
Reproducción de sonido en Pyglet
sound = pyglet.media.load(sound.wav)
sound.play()
Usando Pyglet para OpenGL
import pyglet
from pyglet.gl import *
win = pyglet.window.Window()
@win.event()
def on_draw():
#OpenGL goes here. Use OpenGL as normal.
pyglet.app.run()
Dibujar puntos usando Pyglet y OpenGL
import pyglet
from pyglet.gl import *
win = pyglet.window.Window()
glClear(GL_COLOR_BUFFER_BIT)
@win.event
def on_draw():
glBegin(GL_POINTS)
glVertex2f(x, y) #x is desired distance from left side of window, y is desired distance from bottom of window
#make as many vertexes as you want
glEnd
Para conectar los puntos, reemplace GL_POINTS
con GL_LINE_LOOP
.
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow