-
Notifications
You must be signed in to change notification settings - Fork 0
/
oldIndex.html
56 lines (52 loc) · 1.74 KB
/
oldIndex.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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="stylesheet" type="text/css" href="css/style.css" /> -->
<meta charset="UTF-8">
<title>PerfEngine</title>
<style>
html, body {
margin: 0px;
padding: 0px;
height: 100%;
}
canvas{
width: 100%;
height: 100%
}
#engineContainer{
padding: 0px;
margin: 0px;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
</head>
<body onload="mainFunction()">
<div class="container-fluid" style="height: 100%;">
<div class="row" style="height: 50px; background-color: cadetblue;" >
<div class="nav"></div>
</div>
<div class="row" style="height: 100%;">
<div class="container-fluid">
<div class="row" style="height: 100%;">
<div class="col-1" style="background-color: #7c7c7c">
</div>
<div id="engineContainer" class="col-11">
</div>
</div>
</div>
</div>
</div>
<script src="js/three/three.js"></script>
<script src="js/three/projector.js"></script>
<script src="js/three/controls/OrbitControls.js"></script>
<script src="js/PerfEngine/Base/ComponentProperties.js"></script>
<script src="js/PerfEngine/Base/Component.js"></script>
<script src="js/PerfEngine/ElComponents/Passive.js"></script>
<script src="js/PerfEngine/PerfBoard/ConnectionBlock.js"></script>
<script src="js/PerfEngine/PerfBoard/PerfBoard.js"></script>
<script src="js/PerfEngine/BoardController.js"></script>
<script src="js/PerfEngine/Engine.js"></script>
<script src="js/main.js"></script>
</body>
</html>