Python Language
ピグレット
サーチ…
前書き
Pygletは、ビジュアルとサウンドに使用されるPythonモジュールです。他のモジュールとの依存関係はありません。公式な情報については、[pyglet.org] [1]を参照してください。 [1]:http://pyglet.org
Hello World in 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()
Pygletのインストール
Pythonをインストールし、コマンドラインで次のように入力します。
Python 2:
pip install pyglet
Python 3:
pip3 install pyglet
Pygletでサウンドを再生する
sound = pyglet.media.load(sound.wav)
sound.play()
OpenGLのためのPygletの使用
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()
Pygletと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
ポイントを接続するには、 GL_POINTS
をGL_LINE_LOOP
に置き換えます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow