JKQtPlotter/examples/mandelbrot/mandelbrot.cpp
2022-08-26 22:32:48 +02:00

26 lines
505 B
C++

/** \example mandelbrot.cpp
* Shows how to plot the Mandelbrot set with JKQTPlotter, also providing a zooming feature.
*
* \ref JKQTPlotterMandelbrot
*/
#include "jkqtpexampleapplication.h"
#include <QApplication>
#include <cmath>
#include "mandelbrotmainwindow.h"
int main(int argc, char* argv[])
{
JKQTPAppSettingController highDPIController(argc, argv);
JKQTPExampleApplication app(argc, argv);
MandelbrotMainWindow widMain;
widMain.show();
return app.exec();
}