srmadrid/zgm
Zig Graphics Mathematics
A Zig library for mathematics for graphics programming.
All transformations assume a right-handed coordinate system.
To use this library in your project, run
zig fetch --save git+https://github.com/srmadrid/zgm
and add it to your build.zig
file:
const zgm = b.dependency("zgm", .{});
exe.root_module.addImport("zgm", zgm.module("zgm"));