1
0
Fork
You've already forked zig-raytracing
0
Raytracing in one weekend in zig
  • Zig 100%
2026年05月27日 13:03:21 +02:00
output
src
.gitignore
.zigversion
build.zig
build.zig.zon
LICENSE
README.md

Raytracing In One Weekend with zig

example result

Notable Differences

Differences in implementation compared to the original C++ code:

  • No vec3 class, using zigs @Vector with some helper functions
  • unit_vector is called normalize
  • hittable_list is implemented as World struct
  • ray_color(ray, world) function is called trace