-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 2.28 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 2.28 KB
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 lang="ru">
<head>
<title>Графики 3D</title>
<meta charset="utf-8" />
<link href='css/style.css' rel='stylesheet' />
<script type="module" src='js/graph3D/entities/Point.ts'></script>
<script type="module" src='js/graph3D/entities/Edge.ts'></script>
<script type="module" src='js/graph3D/entities/Polygon.ts'></script>
<script type="module" src='js/graph3D/entities/Subject.ts'></script>
<script type="module" src="js/graph3D/entities/Light.ts"></script>
<script type="module" src='js/graph3D/Surfaces/Surface.ts'></script>
<script type="module" src='js/graph3D/Surfaces/cube.ts'></script>
<script type="module" src='js/graph3D/Surfaces/circle.ts'></script>
<script type="module" src='js/graph3D/Surfaces/sphere.ts'></script>
<script type="module" src='js/graph3D/Surfaces/paraboloid.ts'></script>
<script type="module" src='js/graph3D/Surfaces/hyperbolicParaboloid.ts'></script>
<script type="module" src='js/graph3D/Surfaces/hyperbolicCylinder.ts'></script>
<script type="module" src='js/graph3D/Surfaces/parabolicCylinder.ts'></script>
<script type="module" src='js/graph3D/Surfaces/ellipticCylinder.ts'></script>
<script type="module" src='js/graph3D/Surfaces/singlecavityHyperboloid.ts'></script>
<script type="module" src='js/graph3D/Surfaces/doublecavityHyperboloid.ts'></script>
<script type="module" src='js/graph3D/Surfaces/ellipsoid.ts'></script>
<script type="module" src='js/graph3D/Surfaces/cone.ts'></script>
<script type="module" src='js/graph3D/Surfaces/ellipticParaboloid.ts'></script>
<script type="module" src='js/graph3D/Math3D.ts'></script>
<script type="module" src='js/graph3D/Graph3D.ts'></script>
<script type="module" src='js/graph/Canvas.ts'></script>
<script type="module" src="js/UI/UI.ts"></script>
<script type="module" src='js/main.ts'></script>
</head>
<body>
<div>
<canvas id='canvas'></canvas>
</div>
<div>
<label><input type='checkbox' id='pointsCheckbox' > Рисовать точки</label>
<label><input type='checkbox' id='edgesCheckbox' > Рисовать ребра</label>
<label><input type='checkbox' id='polygonsCheckbox' checked> Рисовать полигоны</label>
</div>
</body>
</html>