-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="https://wartets.github.io/N-Body-Problem/image/browser-icon.png">
<meta name="robots" content="index, follow">
<meta name="description" content="Dive into the mesmerizing world of Julia sets. Create custom fractal visuals in real-time with interactive controls, designed by Wartets (Colin Bossu). Explore stunning mathematical patterns with a simple, user-friendly interface.">
<meta name="keywords" content="Julia set, fractals, real-time rendering, interactive fractals, visual art, Colin Bossu, Wartets, mathematical patterns">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Julia Sets Interactive Art | Wartets Fractal Visuals">
<meta property="og:description" content="Create stunning Julia set fractals in real-time with interactive controls. Explore and adjust mathematical patterns with ease in this unique creation by Wartets (Colin Bossu).">
<meta property="og:image" content="https://wartets.github.io/Wartets/img/JuilaSet-card.png">
<meta property="og:type" content="website">
<meta property="og:url" content="https://wartets.github.io/Julia-Set/">
<title>Julia Set Viewer</title>
<link rel="stylesheet" href="static\css\style.css">
<link rel="icon" href="https://wartets.github.io/N-Body-Problem/image/browser-icon.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/11.8.0/math.js"></script>
</head>
<body>
<div id="controls">
<label for="equation">f(z) =</label>
<input type="text" id="equation" placeholder="Exemple : (1+z^2-z^3)/(z^2-1)+exp(z)/10i" value="z^2+0.355+0.355i">
<button id="apply">OK</button>
</div>
<div id="sliders">
<label for="maxIterSlider">Max Iterations:</label>
<input type="range" id="maxIterSlider" min="4" max="400" value="250" step="1">
<span id="maxIterValue">250</span>
<br>
<label for="resolutionFactorSlider">Resolution Factor:</label>
<input type="range" id="resolutionFactorSlider" min="2" max="96" value="14" step="1">
<span id="resolutionFactorValue">8</span>
</div>
<script src="static\js\script.js"></script>
</body>
</html>