MathForGameDevelopers icon indicating copy to clipboard operation
MathForGameDevelopers copied to clipboard

Sample code for my YouTube series.

Results 7 MathForGameDevelopers issues
Sort by recently updated
recently updated
newest added

Maybe I'm an idiot: ``` struct CubicSpline { vec3 m_points[SPLINE_POINTS]; vec3 m_coeffs[SPLINE_POINTS-1][4]; ``` This initializes m_coeffs with an array size of [15], with available indexes from 0-14. ``` int n...

Hey Jorge, In Windows 10 and specifically VS15, Microsoft have made the decision to drop support for the Windows 7.1 SDK and .NET pre-4.5. Sadly this means that working with...

I'm a member of the Pinguem.ru competition on finding errors in open source projects. A bug, found using PVS-Studio. Warnings: [V542](https://www.viva64.com/en/w/v542/) Consider inspecting an odd type cast: 'wchar_t *' to...

Hi, there's a problema when compiling on linux: g++ -std=c++0x -I. -Icommon -Imath -Iinclude -c game/game.cpp -o game/game.o game/game.cpp: In member function ‘virtual bool CGame::MouseInput(int, tinker_mouse_state_t)’: game/game.cpp:299:10: error: ‘sleep’ was...

I'm able to compile and run "master" like so: make -f Makefile.osx run_mfgd_osx and I get: 6 iterations 3.148438 However, if I comment out this in main.c: //return 0; so...

Hi, i know its like a decade passed since relase but i still would be thankful if it get fixed or show us how to run it ourselves in vs2022...

well i never did a pull request so sorry if i missed anything there was a eror for sleep() in line 300 i checked other files and saw there is...