You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
481 B
24 lines
481 B
#pragma once
|
|
|
|
#include <QVector2D>
|
|
#include <QOpenGLExtraFunctions>
|
|
#include <QOpenGLShaderProgram>
|
|
|
|
class Mandelbrot : public QObject, protected QOpenGLExtraFunctions {
|
|
Q_OBJECT
|
|
public:
|
|
void init();
|
|
void draw(GLuint, QOpenGLShaderProgram&);
|
|
void zoom(double);
|
|
public slots:
|
|
void setIterations(int);
|
|
void updateLimit(int);
|
|
private:
|
|
int iterations = 0;
|
|
float divergeThreshold = 0;
|
|
double scale = 1;
|
|
QVector2D translation;
|
|
void setShaderValues(QOpenGLShaderProgram&);
|
|
};
|
|
|
|
|
|
|