This project is a web application that takes mathematical equations as input and generates colored fractals based on those equations.
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
-
Clone the repository:
git clone <repository-url>
-
Navigate to the project directory:
cd fractal
-
Install the dependencies:
npm install
-
Build the project
npm run build
-
Start the development server
npm start
- 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.
Feel free to submit issues or pull requests to enhance the functionality of the fractal generator.