Skip to main content

For Generating Fast IFS Fractals

Project description

ifsFractals

A python module for fast Iterated Function System Fractal generation

Also, you can use some ifsFractlas functionality in your browser here!

To install, use pip:

pip install ifsFractals --upgrade

If you are trying to use ifsFractals in CoCalc or get an error about a read-only file system, use

python3 -m pip install --user ifsFractals --upgrade

See the usage docs for included functions and classes.

Example usage:

from ifsFractals import *

C1 = Translate(0.5,0.15) @ Rotate(np.pi/4) @ Scale(1/4) C2 = Scale(1/2) C3 = Translate(-.5,0.15) @ Rotate(-np.pi/4) @ Scale(1/4) C4 = Rotate(-np.pi/6) @ Scale(1/2) C5 = Rotate(np.pi/6) @ Scale(1/2)

CT = [C1, C2, C3, C4, C5]

crab = Fractal(CT)

crab.add_points(1_000_000)

crab.save_pic('/Path/to/desired/location/image_name.png')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ifsFractals-1.0.0.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

ifsFractals-1.0.0-py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page