simpleRender
simpleRender copied to clipboard
This is a toy project for learning the theory of 3D render. Single File!
Simple Render
Introduction
This is a toy project for learning the theory of 3D render. I'm tring to add every necessary step into only one file. For simplifying and performance, all math operation are implemented by numpy and the window management are implemented by pyglet.
Features
- World, view, projection transform
- Simple texture mapping
- Backface culling
- Z-buffer
- Diffuse direction lighting
Screen shoot
Dependencies
- numpy for fast math computation
- pyglet for window management
Note
Because I have chosen Python as the main programming language. so there is a huge performance issue.