30 lines
883 B
HTML
30 lines
883 B
HTML
<!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>
|