NovaBug
NovaBug copied to clipboard
using parallel for_each you can drasticaly improve performance in physic.hpp : ```cpp #include //... void findContacts() const { std::for_each(std::execution::par_unseq, std::begin(grid.used), std::end(grid.used), [this](uint32_t g) { checkCellCollisions(g); } ); } ``` i...
I saw the YouTube video and wanted to try myself, but... there is no release! :face_exhaling:
Makes the code run on my Arch installation. I changed expf to exp2f.
When doing this (my username replaced with 'user' and hostname replaced with 'host'), the error shown is thrown: ```bash user@host:~/Unstable_Star/NovaBug/build$ cmake -G "Unix Makefiles" .. -- The CXX compiler identification...
Hello, I'm trying to compile your Project to try it myself, but sadly nothing works. Could you maybe explain how your setup for the SFML library and what your compile...