This project involves a 3D to 2D transformation implemented in C using the rules mentioned above. The code is organized into different source files, and the project structure is managed using a Makefile.
To build the project, you can use the provided Makefile. Here are the basic commands:
make
: Build the main executable.make bonus
: Build a bonus executable with additional features.make clean
: Remove object files.make fclean
: Remove object files and executables.make re
: Recompile the project.
To run the main executable, use the following command:
./fdf [FILE/PATH.fdf]
./bonus_fdf [FILE/PATH.fdf]