A program that uses a complex Fourier series to draw things.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
To compile the project, the only external dependency is wxWidgets. It can be installed by following the tutorial for your specific platform.
In order to compile it the first time, run the following commands on the project directory:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
This will generate the environment necessary to compile the project. If the generator you're using uses a makefile, you can just run make and it will generate the executable.
It's also possible to build the program with optimizations:
mkdir release
cd release
cmake .. -DCMAKE_BUILD_TYPE=Release
It can be compiled the same way as the debug version
- Mingw-W64 - Compiler - version: 10.1.0
- wxWidgets - Graphical library - version: 3.1.3
- wxFormBuilder - XRC editor for wxWidgets - version: 3.9.0
- KissFFT - FFT library
- Gustavo Pacola Gonçalves - Gusgo99
This project is licensed under the MIT License - see the LICENSE file for details.