Metadata-Version: 2.1
Name: ifsFractals
Version: 0.0.14
Summary: For Generating Fast IFS Fractals
Home-page: https://github.com/francisp336/IFSFGl
Author: Peter Francis
Author-email: franpe02@gettysburg.edu
License: UNKNOWN
Description: # ifsFractal
        
        A python module for fast Iterated Function System Fractal generation
        
        Also, you can use some `ifsFractlas` functionality in your browser [here](https://ifs-fractal-generator.herokuapp.com/)!
        
        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](https://share.cocalc.com/share/596b4673-847a-4602-b084-042e432fee41/usage.md?viewer=embed) 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')`
        
Keywords: Fractal Generator
Platform: UNKNOWN
Requires-Python: >=3.0.0
Description-Content-Type: text/markdown
