summaryrefslogtreecommitdiff
path: root/source/math.h
AgeCommit message (Collapse)Author
2024-10-31Added ColumnMajor matrix multiplication.talha
Main code path is disabled until I get everything working correctly. Also added tags to gitignore
2024-10-26Simplified Vec2 operator overloadstalha
2024-10-25Setup a basic camera movertalha
The camera now changes view after player moves beyond 80% of the screen up or right AND beyond 20% of the screen left or bottom.
2024-10-25Added horizontal camera movement, some operator overloadingtalha
2024-10-20Added RGB as a Vec3 alias typetalha
2024-10-19Motion+Collision now work:talha
- Collisions are checked for each side, to let us know how to proceed - Equations of motion seem to work fine, except that they don't play well with time_delta, and are framerate dependant.
2024-10-08Saving draft, added collision detection so fartalha