Skip to content

Instantly share code, notes, and snippets.

View Phyoenix's full-sized avatar
🎯
Focusing

IX Phyoenix

🎯
Focusing
  • Shanghai
View GitHub Profile
@Phyoenix
Phyoenix / cgp.md
Created September 25, 2025 09:24 — forked from notnotrobby/cgp.md
List of free resources to study computer graphics programming.
import taichi as ti
ti.init(arch=ti.gpu)
n = 320
pixels = ti.field(dtype=float, shape=(n * 2, n))
@ti.func
def complex_sqr(z):