A GUI based fractal generator
Project description
pyfractal
A simple gui based self-similar fractal generator
Introduction
This project is aimed to provide a simple gui for drawing fractals so that anyone enthusiastic enough can give them a try.
Table of contents
I was exploring an awesome site which taught me how a turtle would draw amazing fractal curves. Perhaps I made a small script which would draw fractals pretty neatly but it had two issues :-
- It was slow as it took sleeps in between each step (huh is it a turtle or a rabbit) and even after turning the animations off, it was still slow due to implementation styles
- Python Turtle's audience is beginners to programming, so it limited the extendibility of the script
- I wanted to learn more about GUI programming, python packaging, good coding practices and other important stuff
- It had limited scope in scrolling, panning and zooming (the most fun things to do with a fractal)
- There is no pyfractal python library hehe
Features
- A GUI (obviously)
- Exporting fractals to your desired format (namely svg, postscript and png)
- Loading and storing curve parameters for future endeavours
- Scrolling, panning and zooming to any extent
- Preview of base shape of fractal
- Drawing multiple fractals at once on a canvas
- Appending rules of several fractals (more people may consider it a bug, but i consider it a feature)
- Degree and radian support
Setup
pip3 install pyfractal
should do the job
If you have issues with requirements try installing manually by
pip3 install tk
pip3 install canvasvg
pip3 install Pillow
or
pip install tk
pip install canvasvg
pip install Pillow
Having issues installing? Feel free to report issue or simply clone the repository and run main.py
Usage
import pyfractal #import the module
pyfractal.GUI().run() #to run the main gui
A GUI should pop up
Curve parameter input
Pressing on the plus
and minus
buttons adds and removes entires for rule input
Saving curve parameters
Press the Save Parameters
button to save the parameters, a dialog box should appear asking for the name of the file to save
the parameters are stored in a json file
Loading curve parameters
Press the Load Parameters
button to load the parameters, a dialog box should appear asking for the name of the file. If the file is correctly formatted, you should see the parameters loaded onto the screen and list of rules added to the list.
NOTE
The rules are appended to the list of pre-written rules (this is a design choice, not a bug) , clear the pre-existing rules by repeatedly pressing minus
button then loading from file.
Drawing fractals
Feed in/ load the rules, you will see the preview of base fractal image on the smaller canvas.
Enter your desired Recursion Depth
and you will see your fractal drawn on the canvas
Pan/scale/scroll in the canvas according to your viewing preferences
NOTE
The rules/preview-canvas is update only once plus
or minus
button is pressed.
Start drawing fractal from a smaller recursion-depth. The size of fractal is exponential in the recursion depth. It is recommended that you keep Recursion depth
to a single digit integer.
Libraries Used
The project is almost built entirely on tkinter Besides using Pillow and canvasvg to save the canvas
Feedback
Feel free to contribute/clone/Issue or Contact me
TODO
This is probably a VERY long list but here are key TODO's :-
- Curved Edges
- Adding option to curve the corners/edges to make the fractal smoother and to see more clearly the sweep of the fractal
- Adding splines instead of boring straight lines
- Conversion of degree to radians in input feild on pressing radio buttons (not really important but OK)
- Help Pages
- No amount of help pages is sufficient
- Menubar
- Adding a Menubar for easy access to resources and help pages
- More graphic options
- Color support for lines and fills
- Background color/image specification
- Animations
- Animating the turtle (why?? wasn't this the main purpose behind building this project) to momentarily enjoy the chaos caused by simple rules of life
- More types of fractals
- Grid based input
As described here
- Square grid
- Triangular grid
- A general lattice maybe?
- A general 3 dimensional lattice (okay I admit I am being too optimistic)
- Fractal type specifier
- Automatically specify self-avoiding, self-contacting(edge/vertex), self-crossing types from the base rules
- Dimension calculator
- Fractal tile extraction
- Extract tiles from tile-able fractals
- More toooooools
- Clone fractals
- Drag and drop items around on the canvas
Sources
The following links are pretty useful and helpful in learning more about fractals
- http://www.fractalcurves.com is the main inspiration behind this project
- https://www.youtube.com/watch?v=gB9n2gHsHN4 is a pretty interesting watch by 3Blue1Brown
Contact
- My website
- Feel free to give suggestions/recommendations/criticism on Discord or LinkedIn
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyfractal-0.0.1.tar.gz
.
File metadata
- Download URL: pyfractal-0.0.1.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94465f85464003c3a2d9da423c2dcae01243ca998c9439333d32326ec52fbd23 |
|
MD5 | d2876cc3cc8312d64f2ec559cfd9ac37 |
|
BLAKE2b-256 | 2e27b2bb3f2f00e0e3d9fa25b9a4f1b95a65ed2dacb26ee9855ddccd4568dabf |
File details
Details for the file pyfractal-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pyfractal-0.0.1-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd8058b89789158c5e19813c2d4ca33c3582522ea7afe6b0c9d64a9477637921 |
|
MD5 | b19a383066fb8a85563e0eae081746e8 |
|
BLAKE2b-256 | 9be3c71e18a059b9cde3ab13507688c27dec741a0096acbc122a7b03e8fe08a5 |