issues
search
Kazade
/
kazmath
A C math library targeted at games
Other
527
stars
94
forks
source link
pre C++11 fix for aabb.c and division by 0 fix
#30
Closed
dhontecillas
closed
10 years ago
dhontecillas
commented
10 years ago
Changed the aabb.c the fminf / fmaxf function (that is not supported in VS2010 as it is a C++11 addition) for a (a<b):?a:b;
Added some division by 0 checks to C++ classes
Fixed function constness for vec*::operator==
Added the vec*::operator!=