https://github.com/neofelis2x/gl3wxpyg
A playground and testing repo to implement OpenGL 3.3 in a WxPython interface using pyglet as an OpenGL-wrapper.
https://github.com/neofelis2x/gl3wxpyg
3d-graphics numpy opengl pyglet wxpython
Last synced: about 1 month ago
JSON representation
A playground and testing repo to implement OpenGL 3.3 in a WxPython interface using pyglet as an OpenGL-wrapper.
- Host: GitHub
- URL: https://github.com/neofelis2x/gl3wxpyg
- Owner: neofelis2X
- License: gpl-3.0
- Created: 2023-06-27T13:11:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-23T20:09:33.000Z (almost 3 years ago)
- Last Synced: 2025-04-05T18:12:59.378Z (about 1 year ago)
- Topics: 3d-graphics, numpy, opengl, pyglet, wxpython
- Language: Python
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gl3wxpyg
A playground and testing repo to implement **OpenGL 3.3** in a wxPython interface using pyglet as an OpenGL-wrapper.
## Install dependencies [macOS]
```
cd gl3wxpyg/
git pull
python3 -m venv venv
. ./venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
```
## 01_Triangle
Currently this repo has only one example. It shows how to create a OpenGL canvas in wxPython and hand it over to pyglet.
Simply run: ```python 01_Triangle.py```
