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.
- Host: GitHub
- URL: https://github.com/lrmulkayhee/fractal
- Owner: lrmulkayhee
- License: gpl-3.0
- Created: 2025-01-27T15:26:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-28T14:54:34.000Z (about 1 year ago)
- Last Synced: 2025-03-26T21:50:28.838Z (12 months ago)
- Topics: fractal-rendering, html-css-javascript, katex, mathjs
- Language: JavaScript
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.