An open API service indexing awesome lists of open source software.

https://github.com/lrmulkayhee/fractal

The website allows users to input mathematical equations, generate fractals based on those equations, and zoom into the fractals for a closer view.
https://github.com/lrmulkayhee/fractal

fractal-rendering html-css-javascript katex mathjs

Last synced: 11 months ago
JSON representation

The website allows users to input mathematical equations, generate fractals based on those equations, and zoom into the fractals for a closer view.

Awesome Lists containing this project

README

          

# Fractal Website

This project is a web application that takes mathematical equations as input and generates colored fractals based on those equations.

## Project Structure

```
fractal-website
├── src
│ ├── index.html # Main HTML document for the website
│ ├── styles.css # Styles for the website
│ ├── app.js # Main JavaScript file for application logic
│ └── components
│ └── fractalGenerator.js # Contains the FractalGenerator class
├── package.json # npm configuration file
├── .gitignore # Files and directories to be ignored by Git
└── README.md # Documentation for the project
```

## Setup Instructions

1. Clone the repository:
```
git clone
```

2. Navigate to the project directory:
```
cd fractal
```

3. Install the dependencies:
```
npm install

```

4. Build the project
```
npm run build
```

5. Start the development server
```
npm start
```

## Usage Guidelines

- Enter a mathematical equation in the input field provided on the webpage.
- Click the "Generate Fractal" button to create and display the fractal based on the entered equation.
- Adjust the parameters as needed to explore different fractal designs.

## Contributing

Feel free to submit issues or pull requests to enhance the functionality of the fractal generator.