Pixelforge
fersab.github.io/pixelforge/ →A 3D renderer from the first pixel to GPU raytracing — zero libraries, zero frameworks
WHAT IT SOLVES
Most AI-assisted projects are wrappers and CRUD apps. This author wanted to prove Claude Code can handle real algorithmic heavy lifting — real-time graphics and low-level math
WHY IT'S INTERESTING
Deliberately chose the hard path
No WebGL, no Three.js — starts from raw Canvas pixel manipulation and builds a full rendering pipeline from scratch. The author says he wanted something that 'takes you back to the demoscene.' This isn't product thinking, it's craft
Three renderers + BVH acceleration
Software rasterizer, CPU raytracer, GPU raytracer with BVH acceleration and 2×2 AA — three full pipelines in one pure ES6+ project. BVH (Bounding Volume Hierarchy) is serious CG math, not tutorial-grade stuff
「"Most AI-assisted projects you see today are LLM wrappers, CRUD apps, or a handful of frameworks stitched together with API calls. I wanted to push Claude Code in a different direction — heavy algorithmic work, real-time math, and the kind of low-level graphics programming that takes you back to the demoscene"」
TECH GUESS
Pure ES6+ JavaScript, Canvas API pixel ops, WebGPU or compute shaders for GPU raytracing offload
Discussion (0)
- No comments yet — be the first.
Related
#030▶ 375An AI that lives its own life wrote a 13-chapter urban horror story
#029▶ 354Give AI your data, then let it write the code
#028▶ 326Autocomplete for CAD is here