Linear algebra functions and utilities for 3D rendering in C

fractal b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines
algorithms 558af45f6c 2d line rasterization algorithms designed for searching spatial hashes il y a 4 mois
intersect 73428f7bbb quad/point intersection il y a 1 mois
optimizations 5d318b7e08 beginning migration to version 2 il y a 4 ans
.gitignore 8827e68c4b tri/plane clipping il y a 5 ans
LICENSE fe493e9cf8 point-polygon distance function il y a 2 ans
README.md 7393055bee Matrix-vector multiplication that preserves /what you want/ when transforming world coordinates into clip space for culling purposes il y a 2 ans
build.sh b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines
c3dlas.c b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines
c3dlas.h b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines
generic_vectors.h 88eaf75163 vDiv, fixes for matrix and quaternion fns il y a 6 mois
inertia.c 9475019198 Inertial moment functions il y a 2 ans
inertia.h 9475019198 Inertial moment functions il y a 2 ans
legacy_migration.sh 5d318b7e08 beginning migration to version 2 il y a 4 ans
line.c 6554cc3f7b fixed linelineline2 function il y a 2 mois
matrix3.c 5b8cd715ba missing semicolon and some other fixes il y a 2 ans
matrix4.c 17796af1d4 fixed #if il y a 4 mois
meshgen.c 7393055bee Matrix-vector multiplication that preserves /what you want/ when transforming world coordinates into clip space for culling purposes il y a 2 ans
meshgen.h 7393055bee Matrix-vector multiplication that preserves /what you want/ when transforming world coordinates into clip space for culling purposes il y a 2 ans
quad.c 73428f7bbb quad/point intersection il y a 1 mois
quaternion.c 81a45094c1 new ine/rectangle functions, reorganization of line functions il y a 4 mois
short_macros.h e53f9c0dfb make the vector short macro initializers eat trailing commas il y a 10 mois
test.c b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines
test.sh b52e44cd97 test pcg functions, clearer pcg_init logic il y a 2 semaines

README.md

c3dlas

Linear algebra functions and utilities for 3D rendering in C

This library exists because I couldn't find an MIT/BSD licensed C library for doing the math required in a OpenGL program. It's not optimized, extensive, or sophisticated. It is free and written in pure C.

C++ has become fat and ugly with age. Not that it was a 9 to start with...

ATLAS/CBLAS are an incomprehensible mess.

GPL, while a wonderful thing, is a bit heavy-handed for some basic math functions.

I firmly believe that such a library did not exist because most of the functionality was built in to older OpenGL versions. By the time OpenGL 3.3 came out most developers had converted to worshiping under the altar of OOP.

There are probably math bugs somewhere. If you find one, report it on github. Preferably include how to fix it to make my life easier.