kazmath
kazmath copied to clipboard
A C math library targeted at games
There is a small typo in lua/README.md. Should read `example` rather than `exmaple`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md
to be honest not sure if this is even an issue? kmMat4* kmMat4Scaling(kmMat4* pOut, const kmScalar x, const kmScalar y, kmScalar z) kmMat4* kmMat4Translation(kmMat4* pOut, const kmScalar x, kmScalar y,...
'make' command error: "isnan was not declared in this scope" Fix could be adding the line: `using std::isnan;` right after the includes in the same file.
Currently, trying to build on Windows using the Visual C++ compiler bundled with Visual Studio causes the following error (plus a host of warnings concerning uninitialized variables): `Cannot open include...
Steps to reproduce: ``` git clone https://github.com/Kazade/kazmath.git cd kazmath mkdir build cd build cmake .. make ``` produces: ``` /Users/jamiltron/opt/kazmath/tests/kaztest/kaztest.h:53:34: warning: variadic templates are a C++11 extension [-Wc++11-extensions] template ^...
I am trying to use Kazmath for my engine, but I am having issues with incorrect lookAt, so I launched the test and I got this : > ./kazmath_tests >...
In `kmSegment2WithSegmentIntersection` in ray2.c: ``` if( kmLine2WithLineIntersection( &(segmentA->start), &(segmentA->dir), &(segmentB->start), &(segmentB->start), &ua, &ub, &pt ) && (0.0 dir), &(segmentB->start), &(segmentB->dir), &ua, &ub, &pt ) && (0.0 dir` Not sure this...
- Added a function to find the minimum distance from a boundvec to a point (can be used to calculate the distance from a platform represented as a boundvec to...
using boost::python, but make building it optional to keep the dependencies for the default build small
I'm willing to do it. I just wan't to make sure there is a possibility of inclusion before starting. Regards, Marcelo