-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (43 loc) · 1.78 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
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="styles/style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Vollkorn&display=swap" rel="stylesheet">
<title>Vectorfields</title>
</head>
<body>
<div id="hovered" ></div>
<div id="coords"></div>
<button id="hide" data="on"> Hide pannel</button>
<div id="Form">
<p class="st">Field</p>
<input id="dx" placeholder="x' = " type="text" name="введите x'">
<input id="dy" placeholder="y' = " type="text" name="введите y'">
<button id="set">Update field equation</button>
<p class="st">x speed </p>
<input id="xspeed" type="number" step="1" value="1" min="1" max="5">
<p class="st">Number of particles</p>
<input id="count" type="number" step="10" value="1000" min="100">
<p class="st">Life expectancy</p>
<input id="M_Time_Alive_particle" type="number" step="0.05" value="1.5" min="1">
<p class="st">Track length</p>
<input id="M_n_lines" type="number" step="1" value="20" min="10" max="150">
<p class="st">integrate step</p>
<input id="h_integrate" type="number" step="0.00005" value="1e-3">
<button id="scale_p">Add scale</button>
<button id="scale_s">Sub scale</button>
<button id="share">Share</button>
<button id="help">Help</button>
</div>
<div id="stage">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.1/pixi.min.js" ></script>
<script src="scripts/RungeKutt.js"></script>
<script src="scripts/World.js"></script>
<script src="scripts/Parser.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>