Metadata-Version: 2.1
Name: pyfracgen
Version: 0.0.10
Summary: Python Fractal Generation is a package for generating aesthetic fractal images quickly and (hopefully) easily
Home-page: https://github.com/rytheranderson/pyfracgen
License: MIT
Author: Ryther Anderson
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: matplotlib (>=3.7.1,<4.0.0)
Requires-Dist: numba (>=0.56.4,<0.57.0)
Project-URL: Repository, https://github.com/rytheranderson/pyfracgen
Description-Content-Type: text/markdown

## Authors

- Ryther Anderson

## Description
Python Fractal Generation is a package for making interesting/aesthetic fractal
images quickly and (hopefully) easily. A multitude of unique fractals (from
various views) can be generated using only a few functions. Each fractal
generation function returns a result object containing an array of floats that
can be converted into an image, the desired width/height in inches, and the
number of pixels per inch. This result object can be passed to various image
creation functions that assign colors to the fractal array based on a colormap
(or creates RGB channels from the array).

## Installation

pyfracgen can currently be installed from the following sources:

### Git
```bash
git clone https://github.com/rytheranderson/pyfracgen.git
poetry install
```

### PyPi
```bash
pip install pyfracgen
```

## Example Images

All the package functions can be accessed from a single import:
```
import pyfracgen as pf
from matplotlib import pyplot as plt
```

### Mandelbrot Set
![](https://github.com/rytheranderson/pyfracgen/raw/main/example_images/mandelbrot_ex.png?raw=true)

Image produced with this code:

```python
# x and y bounds, x is the real part and y is the imaginary part
xbound = (
    0.3602404434376143632361252444495 - 0.00000000000003,
    0.3602404434376143632361252444495 + 0.00000000000025,
)
ybound = (
    -0.6413130610648031748603750151793 - 0.00000000000006,
    -0.6413130610648031748603750151793 + 0.00000000000013,
)
mymap = pf.images.stack_cmaps(plt.cm.gist_gray, 50)
man = pf.mandelbrot(
    xbound, ybound, pf.funcs.power, width=4, height=3, maxiter=5000, dpi=300
)
pf.images.image(man, cmap=mymap, gamma=0.8)
plt.savefig("example_images/mandelbrot_ex.png")
```

### Julia Set Animation
![](https://github.com/rytheranderson/pyfracgen/raw/main/example_images/julia_animation_ex.gif?raw=true)

Animation produced with this code:

```python
c_vals = np.array([complex(i, 0.75) for i in np.linspace(0.05, 3.0, 100)])
s = pf.julia_series(
    c_vals,
    (-1, 1),
    (-0.75, 1.25),
    pf.funcs.magnetic_2,
    maxiter=300,
    width=4,
    height=3,
    dpi=200,
)
pf.images.save_animation(
    s,
    gamma=0.9,
    cmap=plt.cm.gist_ncar,
    filename="example_images/julia_animation_ex",
)
```

### Markus-Lyapunov Fractal
![](https://github.com/rytheranderson/pyfracgen/raw/main/example_images/lyapunov_ex.png?raw=true)

Image produced with this code:

```python
string = "AAAAAABBBBBB"
xbound = (2.5, 3.4)
ybound = (3.4, 4.0)
im = pf.lyapunov(
    string, xbound, ybound, n_init=2000, n_iter=2000, dpi=300, width=4, height=3
)
pf.images.markus_lyapunov_image(im, plt.cm.bone, plt.cm.bone_r, gammas=(8, 1))
plt.savefig("example_images/lyapunov_ex.png")
```

### Random Walk
![](https://github.com/rytheranderson/pyfracgen/raw/main/example_images/randomwalk_ex.png?raw=true)

Image produced with this code:

```python
basis = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]])
moves = pf.construct_moves(basis)
M = pf.randomwalk(
    moves, 5000000, width=4, height=3, depth=10, dpi=300, tracking="temporal"
)
pf.images.randomwalk_image(M, cmap=plt.cm.gist_yarg, gamma=1.0)
plt.savefig("example_images/randomwalk_ex.png")
```

### Buddhabrot with Nebula Coloring
![](https://github.com/rytheranderson/pyfracgen/raw/main/example_images/buddhabrot_ex.png?raw=true)

Image produced with this code:

```python
xbound = (-1.75, 0.85)
ybound = (-1.10, 1.10)
cvals = pf.compute_cvals(
    1000000, xbound, ybound, pf.funcs.power, width=4, height=3, dpi=100
)
results = []
for maxiter in [100, 1000, 10000]:
    res = pf.buddhabrot(
        xbound,
        ybound,
        cvals,
        pf.funcs.power,
        horizon=1.0e6,
        maxiter=maxiter,
        width=5,
        height=4,
        dpi=300,
    )
    results.append(res)
pf.images.nebula_image(*results, gamma=0.4)
plt.savefig("example_images/buddhabrot_ex.png")
```

## Current Status
There are functions for Mandelbrot and Julia set generation, image and animation
creation. There is a function for Buddhabrot generation and a function for the
"nebula" coloring of the Buddhabrot. There is a class for creating and
visualizaing 2- and 3-dimensional random walks. The most recent addition is a
function for generating Markus-Lyapunov fractals, with a special image function
for the "typical" blue/green coloring (which can also be used with other color
schemes).

