aboutsummaryrefslogtreecommitdiff
path: root/src/fb
Commit message (Collapse)AuthorAgeFilesLines
* various improvementsvimene2024-12-315-76/+55
| | | | | | | | | | | - added quaternions and rewrote all rotations to use them - added transforms to put all object transforms in a single place - added Wavefront .obj file parser - removed frame buffer's abstract class - improved vectors, matrices, triangles, vertices and vertices data by putting all code in header file - added vector's operations - changed from NULL to nullptr - miscellaneous improvements
* improved mesh definitionvimene2023-12-111-0/+1
| | | | | | | | - In the context of mesh definition, splited indices into vertex index, normal index and vertex data index to be able to specify different normals and vertex data for different faces using the same vertex
* fixed perspective, added planevimene2023-12-091-2/+4
|
* fixed perspective calculationsvimene2023-12-092-12/+3
|
* added renderer, improved various thingsvimene2023-12-055-241/+37
| | | | | | | - Added renderer to unify frame buffers - Added FrameBuffer class as a parent for frame buffers' classes - Improved formatting in Makefile.am - Added const modifier in Matrix4's methods
* renamed MathVector{2,3,4} to Vector{2,3,4} and Mat4 to Matrix4 in engine::mathvimene2023-12-034-12/+12
|
* added namespaces, made every function in engine.cpp static and added ↵vimene2023-11-264-32/+44
| | | | warnings' flags
* add options to choose render modevimene2023-11-231-1/+5
|
* code refactoringvimene2023-11-224-0/+362