This commit is contained in:
Ramakm
2025-11-24 23:47:14 +05:30
parent 5b853d1f64
commit 193fe8bb0e
13 changed files with 6034 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aizawa Attractor</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<div id="app"></div>
<div id="info-panel">
<h1>Aizawa Attractor</h1>
<p>
The Aizawa attractor is a system of differential equations that generates a beautiful, chaotic trajectory.
</p>
<p>
<strong>Math:</strong><br>
dx/dt = (z - b)x - dy<br>
dy/dt = dx + (z - b)y<br>
dz/dt = c + az - z³/3 - x² + fzx³
</p>
<p>
Explore the chaos by rotating, zooming, or changing parameters.
</p>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>