-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
70 lines (61 loc) · 2.02 KB
/
about.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Write Height</title>
<link rel="stylesheet" href="./styles/main.css" />
</head>
<body>
<div id="header">
<h1>
Write Height <span id="bar">|</span>
<span id="subhead">About</span>
</h1>
</div>
<div id="about">
<p>
This application converts greyscale images into 3D models that can be
viewed and downloaded.
</p>
<h2>Controls</h2>
<p>
You can rotate (left-mouse or finger swipe), zoom (scroll wheel or
finger pinch) and pan (right-mouse or two-finger swipe) around the 3D
scene to inspect the model.
</p>
<h2>Images</h2>
<p>
A set of example images are included for inspiration. Original images
can be created using any decent drawing or image-editing application and
then uploaded.
</p>
<h2>Exporting</h2>
<p>
3D models can be exported as <kbd>.stl</kbd>, <kbd>.obj</kbd> or <kbd>.glb</kbd> files for use in
other 3D software or 3D printing. Model topology may need to be cleaned
up for your specific application.
</p>
<h2>Motivation</h2>
<p>
I made this tool to be a free, easy and portable way to experiment with
3D. View source code on
<a href="https://github.com/edibotopic/write-height">Github</a>.
</p>
<h2>Implementation</h2>
<p>
The application is written using Vanilla JavaScript and relies heavily on the excellent
<a href="https://www.babylonjs.com">Babylon.js</a>.
</p>
<h2>Plans</h2>
<p>
I would like to add more options for mesh customisation, especially mesh detail.
</p>
<br /><br />
<a href="https://edibotopic.github.io/write-height/index.html"
>⬅ Go back</a
>
</div>
</body>
</html>