SoftwareRasterizer/README.md
2025-06-02 22:16:49 -04:00

26 lines
534 B
Markdown

# 3D Software Renderer by Bobby
Writing a simple 3D software renderer from scratch to understand the math behind it one step at a time.
## 🎯 Milestones
- [X] Setup Raylib C# project
- [X] Draw an image from a byte array
- [X] Draw a triangle
- [ ] Render Lots of triangles
- [ ] OBJ Loader
- [ ] Ortho Projection
- [ ] Rotation
- [ ] Backface Culling
- [ ] Perspective and FOV
- [ ] Depth Culling
- [ ] Camera and View Space
- [ ] Textures
- [ ] Simulated Pixel Shaders
- [ ] Lighting
- [ ] Optimizations