Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tchaumeny/mandel
A command line tool to generate fractal images
https://github.com/tchaumeny/mandel
Last synced: 9 days ago
JSON representation
A command line tool to generate fractal images
- Host: GitHub
- URL: https://github.com/tchaumeny/mandel
- Owner: tchaumeny
- Created: 2014-11-21T20:38:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-17T18:23:35.000Z (over 9 years ago)
- Last Synced: 2023-04-08T05:18:58.136Z (over 1 year ago)
- Language: Java
- Size: 5.74 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Mandel
======Mandel is a command-line tool to generate fractal images. It is multi-threaded
and includes a light expression parser to let you define your own formulas.Usage
-----Build it with Gradle::
$ gradle build
And then::
$ java -jar Mandel.jar -area "-1.55;0.2;-0.8;0.8" -set julia -param "-0.8;0.156" -color "#FFFFFF;#000000" -resolution 1200 -iter 140
.. image:: ./examples/Julia2.png
.. code-block::
$ java -jar Mandel.jar -set julia -color "#ffffff..#00001a" -iter 250 -area "-1.51;1.51;-0.88;0.88"
.. image:: ./examples/Julia3.png
Defining your own formula::
$ java -jar Mandel.jar -transformation "-i*c*z^5+1+i" -area "-0.28;0.28;-0.1;0.5" -iter 25 -resolution 1000
.. image:: ./examples/Mickey.png
For a full list of options::
$ java -jar Mandel.jar -h