Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (25 loc) · 1.01 KB

mandelbrot-set

Getting Started

Everyone can simply draw almost any part of Mandelbrot set by this code.

Usage

Just compile mandelbrot.cpp and execute mandelbrot.

$ g++ mandelbrot.cpp -o mandelbrot -std=c++11 -Wall -pthread
$ ./mandelbrot

Convert Image

You can convert image from *.ppm to *.png.

Linux

$ convert mandelbrot.ppm mandelbrot.png

macOS

$ sips -s format png mandelbrot.ppm --out mandelbrot.png

Gallery