Flywheel Demos
- First Demofirst_demo
A tiny starter demo for a multi-demo Flywheel project.
- Torus Optimizedtorus_optimized
A solid torus demo using a more performance-oriented software rendering path: precomputed mesh data, indexed triangles, back-face culling, and a z-buffer.
- Solid Torustorus_solid
A simple software-rendered solid torus. The demo builds a grid of torus faces, sorts them from back to front, and draws each face as two filled triangles with basic directional lighting.
- Torus Wiretorus_wire
A simple software-rendered wireframe torus. The code is intentionally direct: sample points on a torus, rotate them, project them onto the pixel buffer, and draw lines between neighboring samples.