Zig GLM
A GLM alternative for the zig programming language.
Installation
Execute the following from your project root to install the library. Note that
the dependencies
can be replaced with any other directory.
mkdir -p dependencies
git submodules add https://github.com/ziglang-contrib/glm dependencies/glm
cd dependencies/glm
git checkout v1.0.0
cd ../..
Add the following to your build.zig
(replacing exe
with the actual build step that requires this library):
exe.addPackagePath("glm", "dependencies/glm/glm.zig");
Commit History
@master
git clone https://git.s-ol.nu/forks/glm-zig.git
- add VecN format(), shrink() s-ol 1 year, 11 months ago
- add MatN invert(), apply() s-ol 1 year, 11 months ago
- make Matrix packed struct s-ol 2 years ago
- update to follow newer zig versions spx01 2 years ago
- update to follow newer zig versions spx01 2 years ago
- Initial commit Alexis Brodeur 3 years ago