broadfield-dev commited on
Commit
c140ae3
·
verified ·
1 Parent(s): c291038

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +45 -0
templates/index.html ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!-- static/index.html -->
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>3D Spacetime Fluid Simulator</title>
8
+ <link rel="stylesheet" href="/static/styles.css">
9
+ </head>
10
+ <body>
11
+ <div id="container">
12
+ <div id="controls">
13
+ <h1>3D Spacetime Fluid Simulator</h1>
14
+ <p>Adjust the masses and positions of the spheres, then click "Start Simulation".</p>
15
+ <div class="sphere-controls">
16
+ <h3>Brown Sphere</h3>
17
+ <label>Mass: <input type="range" id="brown-mass" min="10" max="100" value="92"></label>
18
+ <label>X: <input type="range" id="brown-x" min="-10" max="10" value="0"></label>
19
+ <label>Y: <input type="range" id="brown-y" min="-10" max="10" value="0"></label>
20
+ <label>Z: <input type="range" id="brown-z" min="-10" max="10" value="0"></label>
21
+ </div>
22
+ <div class="sphere-controls">
23
+ <h3>Green Sphere</h3>
24
+ <label>Mass: <input type="range" id="green-mass" min="10" max="100" value="29"></label>
25
+ <label>X: <input type="range" id="green-x" min="-10" max="10" value="5"></label>
26
+ <label>Y: <input type="range" id="green-y" min="-10" max="10" value="0"></label>
27
+ <label>Z: <input type="range" id="green-z" min="-10" max="10" value="5"></label>
28
+ </div>
29
+ <div class="sphere-controls">
30
+ <h3>Red Sphere</h3>
31
+ <label>Mass: <input type="range" id="red-mass" min="10" max="100" value="10"></label>
32
+ <label>X: <input type="range" id="red-x" min="-10" max="10" value="-5"></label>
33
+ <label>Y: <input type="range" id="red-y" min="-10" max="10" value="0"></label>
34
+ <label>Z: <input type="range" id="red-z" min="-10" max="10" value="-5"></label>
35
+ </div>
36
+ <button id="start-btn">Start Simulation</button>
37
+ <button id="reset-btn">Reset Simulation</button>
38
+ </div>
39
+ <div id="scene-container"></div>
40
+ </div>
41
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
42
+ <script src="https://cdn.jsdelivr.net/npm/[email protected]/examples/js/controls/OrbitControls.js"></script>
43
+ <script src="/static/script.js"></script>
44
+ </body>
45
+ </html>