Metadata-Version: 2.1
Name: pyfractals
Version: 1.2
Summary: Python Module which creates fractals design.
Home-page: https://github.com/AbhayTr/PyFractals
Author: Abhay Tripathi
Author-email: abhay.triipathi@gmail.com
License: MIT
Download-URL: https://github.com/AbhayTr/PyFractals/archive/v1.2.tar.gz
Description: # PyFractals
        
        ## Visualising the equation which revolutionized maths!
        
        Python Module which creates the fractals design.
        
        ## Mandelbrot equation: 
        
        **ƒ(z) = z² + c** where **c is any complex number** is used to make the famous mandel brot fractals.
        
        It can show the fractals design by:
        
        - Plotting the fractals design on graph.
        - Save the fractals design as an image file.
        
        ## Installation
        
        Simply using PyPi: 
        
        ```
        pip install pyfractals
        ```
        ## Usage
        
        Simply run the following python code:
        
        ```python
        from pyfractals import MandelBrot
        
        MandelBrot(mode = "image/graph", optional_params)
        ```
        
        Thats it!
        
        ## Parameters
        
        - **mode (Required):** Specifies how one wants to visualize the fractals design, "image" for saving the design as a picture file, "graph" for plotting the design on graph.
        - **accuracy_factor (Optional):** Greater the accuracy_factor, more detailed is the fractals design and more processing power and time is required (Defualt: 1000).
        - **save_file_path (Optional):** If mode is set to "image", then this specefies the path were the image file has to be saved (Default: Same as your python file).
        
        So go ahead and enjoy the beautiful and complex MandelBrot Fractals Design!
        
Keywords: PyFractals,Fractal,PyMandelBrot,Fractals,MandelBrot,Infinity,MandelBrot Graph
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
