RandyGaul

Results 139 comments of RandyGaul

Sure thing we can add this! Did you want to submit a PR? I can do this as well, but a PR may be faster.

Going to nix this and just stick with SDL2 backend for Linux.

https://github.com/RandyGaul/cute_headers/issues/331

Could never quite get a repro of this myself going, and things have changed a lot since 2019. Going to close this out for now. Feel free to re-open if...

https://github.com/RandyGaul/cute_headers/issues/331

Here's a really nice C/C++ random number solution. It produces pretty good numbers, and supports all the basic C types already: https://github.com/RandyGaul/cute_framework/blob/master/include/cute_rnd.h At some point I'll definitely add perlin 1d,...

Typically people are used to SIMD functions having low precision, for example with custom cos or sin functions that expect inputs to be mapped from -pi to pi before calling....

Personally I prefer mul kind of function in C++. The reason is if we concatenate a few matrices like so: ```cpp D = A * B * C D =...

I'm in favor of explicit HMM_Perspective_LH and HMM_Perspective_RH. Windows uses the whole macro thing for wide vs ansi strings (W and A at the end of function names, and a...

My personal priority of concerns is something like this. 1. Small header without complexity. 2. Clear API requiring minimal docs, obvious how to use at-a-glance. 3. Avoid build-breaking changes. Pretty...