juj
juj
Investigate adding support for functions that would generate transformation matrices that are applied to vectors in the order 'v \* M' to produce the intended effect. Keep this support separate...
Add support for a primitive geometry type Cylinder. Add support for euclidean cylindrical and spherical cylindrical conversion in float3. (see http://en.wikipedia.org/wiki/Cylindrical_coordinate_system )
Add a separate class named Convex, ConvexPolyhedron or PlaneBoundedVolume, which is a stored as a list of planes instead of vertex-polygon list representation. This allows considerably faster SAT tests against...
Profiling shows that Matrix*vector operations can be implemented faster with SSE when the matrix is stored in column major order. The current order is row major. Convert the representation from...
The page https://github.com/gsathya/SDL-emscripten/wiki/Ported-subsystems lists all the current subsystems and their port status. To give a more precise overview for people doing a port, let's expand this page to contain a...
To be able to integrate the SDL2 tests to Emscripten build system, we need to develop a script that, similar to how Emscripten test runner works, goes through all tests...
We should make sure that the CMake path of configuring SDL2 to build is well supported, since that is the only clean native way on Windows to build. In Windows,...
It looks like the file include/sdl_config.h ( https://github.com/gsathya/SDL-emscripten/commits/master/include/SDL_config.h ) is automatically generated by the configure system, and reconfiguring the build can rewrite its contents. Should this file exist at all...
Wow, finding this project brought up some hot memories from the past, and thought about trying to get some of my code running on an older DOS PC. Amazing work!...
I notice that in all the views, nothing is copy-pasteable so it is difficult to copy stuff into bug reports and to scratch pads for later reference. It would be...