https://github.com/magjac/mandelbrot-qt
Zooming into the Mandelbrot set using Qt and C++
https://github.com/magjac/mandelbrot-qt
Last synced: 2 months ago
JSON representation
Zooming into the Mandelbrot set using Qt and C++
- Host: GitHub
- URL: https://github.com/magjac/mandelbrot-qt
- Owner: magjac
- Created: 2020-01-04T12:21:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-04T13:46:29.000Z (over 5 years ago)
- Last Synced: 2025-02-01T08:13:48.477Z (4 months ago)
- Language: C++
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mandelbrot-qt
Zooming into the Mandelbrot set using Qt and C++A simple desktop application that draws the Mandelbot set and zooms into a predefined point. This is just a quick hack to learn Qt. There are much better Mandelbrot programs out threre.
## Build and run from Qt Creator
* Install [Qt](https://www.qt.io/download).
* Start qtcreator
* Accept default configuration
* Build -> Build All
* Build -> Run## Build and run from shell
* cd ../build-mandelbrot-Desktop-Debug
* make
./mandelbrot## Change size, speed and precision
* The size of the graph can be changed [here](https://github.com/magjac/mandelbrot-qt/blob/fe0655939df9bd09f4397887cbfd9c5476f3fdf1/main.cpp#L11). Smaller is faster.
* The precision of the graph can be changed [here](https://github.com/magjac/mandelbrot-qt/blob/fe0655939df9bd09f4397887cbfd9c5476f3fdf1/main.cpp#L30). Lower precision is faster, but gives bad resolution for deep zooms.The default values are small and slow, but gives a lot of detail in the deep zooms