Rico P

Results 20 issues of Rico P

The following code breaks. ``` function factorial_cps(n, k) { if (n === 0) return k(1); return factorial_cps( n - 1, function(result) { return k(n * result); }); } function identity(x)...

bug

Would be great if you could also export the doc to epub so I can throw it on my e-reader. I would do it myself, but pandoc gives me trouble.

The vec3 was incorrectly indexed when constructing a mat3 rotation matrix. Copy and paste error?

I noticed sometimes when I scroll with my scrollwheel gainput crashes because the buttonID is not correctly initialized. I debuged the code, and the reason is that for some reason...

hi there. Are there any plans to support emscripten? Meaning being able to compile a gainput app with the emcc compiler and have proper keyboard, mouse and gamepad support.

The links on http://gainput.johanneskuhlmann.de/api/examples.html are broken.

I use the pattern ```// TODO(RicoP) bla``` very commonly to refer to a username. Is there a option to automatically add a reference to the assignees list?

enhancement

When building the project using cmake I get the following error when I try to compile the project using Visual Studio 2019 ``` C:\repo\EAStdC\test\packages\EAMain\source\EAMain.cpp(175,64): error C2665: "EA::StdC::Strlen": Couldn't find fitting...

According to the documentation there should be 64 bit fixed point number types in the lib but they are nowhere to be seen. So I added my own type. I...

This might be related to #361? **What are you trying to do?** I have different configurations (debug, debugfast, release) for my workspace, but I have one project that i always...

support-request