-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (51 loc) · 3.51 KB
/
index.html
File metadata and controls
59 lines (51 loc) · 3.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Examples Index</title>
<style>
* {
margin: 0;
}
html {
font-family: sans-serif;
}
body {
padding: 1rem;
}
</style>
</head>
<body>
<div style="display: flex; flex-direction: column; gap: 1rem;">
<h3>Choose an example</h3>
<a style="width: fit-content;" href="./packages\front\src\measurement\VolumeMeasurement\example.html">front/VolumeMeasurement</a>
<a style="width: fit-content;" href="./packages\front\src\measurement\LengthMeasurement\example.html">front/LengthMeasurement</a>
<a style="width: fit-content;" href="./packages\front\src\measurement\AreaMeasurement\example.html">front/AreaMeasurement</a>
<a style="width: fit-content;" href="./packages\front\src\measurement\AngleMeasurement\example.html">front/AngleMeasurement</a>
<a style="width: fit-content;" href="./packages\front\src\fragments\Outliner\example.html">front/Outliner</a>
<a style="width: fit-content;" href="./packages\front\src\fragments\Hoverer\example.html">front/Hoverer</a>
<a style="width: fit-content;" href="./packages\front\src\fragments\Highlighter\example.html">front/Highlighter</a>
<a style="width: fit-content;" href="./packages\front\src\core\PostproductionRenderer\example.html">front/PostproductionRenderer</a>
<a style="width: fit-content;" href="./packages\front\src\core\Marker\example.html">front/Marker</a>
<a style="width: fit-content;" href="./packages\front\src\core\ClipStyler\example.html">front/ClipStyler</a>
<a style="width: fit-content;" href="./packages\front\src\civil\CivilNavigators\example.html">front/CivilNavigators</a>
<a style="width: fit-content;" href="./packages\core\src\openbim\IDSSpecifications\example.html">core/IDSSpecifications</a>
<a style="width: fit-content;" href="./packages\core\src\openbim\BCFTopics\example.html">core/BCFTopics</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\ItemsFinder\example.html">core/ItemsFinder</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\IfcLoader\example.html">core/IfcLoader</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\Hider\example.html">core/Hider</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\FragmentsManager\example.html">core/FragmentsManager</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\Classifier\example.html">core/Classifier</a>
<a style="width: fit-content;" href="./packages\core\src\fragments\BoundingBoxer\example.html">core/BoundingBoxer</a>
<a style="width: fit-content;" href="./packages\core\src\core\Worlds\example.html">core/Worlds</a>
<a style="width: fit-content;" href="./packages\core\src\core\Views\example.html">core/Views</a>
<a style="width: fit-content;" href="./packages\core\src\core\Viewpoints\example.html">core/Viewpoints</a>
<a style="width: fit-content;" href="./packages\core\src\core\ShadowedScene\example.html">core/ShadowedScene</a>
<a style="width: fit-content;" href="./packages\core\src\core\Raycasters\example.html">core/Raycasters</a>
<a style="width: fit-content;" href="./packages\core\src\core\OrthoPerspectiveCamera\example.html">core/OrthoPerspectiveCamera</a>
<a style="width: fit-content;" href="./packages\core\src\core\Grids\example.html">core/Grids</a>
<a style="width: fit-content;" href="./packages\core\src\core\Clipper\example.html">core/Clipper</a>
</div>
</body>
</html>