https://github.com/simonwaldherr/bbmandelbrotgo
generate images of a mandelbrot fractal
https://github.com/simonwaldherr/bbmandelbrotgo
fractal fractal-algorithms fractal-images go golang hacktoberfest-accepted mandelbrot mandelbrot-fractal
Last synced: about 2 months ago
JSON representation
generate images of a mandelbrot fractal
- Host: GitHub
- URL: https://github.com/simonwaldherr/bbmandelbrotgo
- Owner: SimonWaldherr
- License: mit
- Created: 2014-07-20T21:55:42.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-04-18T07:58:27.000Z (about 2 years ago)
- Last Synced: 2025-03-24T02:06:00.912Z (3 months ago)
- Topics: fractal, fractal-algorithms, fractal-images, go, golang, hacktoberfest-accepted, mandelbrot, mandelbrot-fractal
- Language: Go
- Homepage:
- Size: 7.33 MB
- Stars: 20
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# bbmandelbrotGo
[](https://coveralls.io/r/SimonWaldherr/bbmandelbrotGo)
[](https://goreportcard.com/report/github.com/simonwaldherr/bbmandelbrotGo)
[](https://codebeat.co/projects/github-com-simonwaldherr-bbmandelbrotgo-master)
[](https://zenodo.org/badge/latestdoi/22044354)
[](https://godoc.org/github.com/SimonWaldherr/bbmandelbrotGo)
[](https://raw.githubusercontent.com/SimonWaldherr/bbmandelbrotGo/master/LICENSE)## what
the [Mandelbrot set](http://en.wikipedia.org/wiki/Mandelbrot_set) is a very popular [fractal](http://en.wikipedia.org/wiki/Fractal) by [Benoît B. Mandelbrot](http://en.wikipedia.org/wiki/Benoit_Mandelbrot).
There is a great [Song (and Video) on YouTube about the Mandelbrot(/Julia) fractal](https://www.youtube.com/watch?v=ES-yKOYaXq0).
Many thanks to [Jonathan Coulton](https://www.jonathancoulton.com) for this great song and for sharing it under [CC](https://creativecommons.org)-BY-NC
## how
```
go test .
``````
go run demo/cliexample.go --help
Usage of ./bbmandelbrot:
-b=1: color scheme (blue)
-f="mandelbrot.png": destination filename
-g=3: color scheme (green)
-h=2560: fractal height
-r=2: color scheme (red)
-w=2560: fractal width
exit status 2
```