-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path07-2-threetext.html
More file actions
37 lines (29 loc) · 903 Bytes
/
Copy path07-2-threetext.html
File metadata and controls
37 lines (29 loc) · 903 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="charset=utf-8" />
<link rel="stylesheet" type="text/css" href="styles/base.css" />
<title>Setting text in Three.js</title>
</head>
<body>
<div id="page">
<nav></nav>
<article>
<h1>Setting text in Three.js</h1>
<p>
Your mission?
Show me how to set text in Three.js.
Hint: there are about a million examples online just waiting to be found.
</p>
<!--
http://www.html5rocks.com/en/tutorials/webgl/million_letters/
http://aleksandarrodic.com/p/snow/
http://stackoverflow.com/questions/8656544/need-help-on-three-js-textgeometry
-->
</article>
</div>
<script charset="utf-8" src="scripts/jquery.js"></script>
<script charset="utf-8" src="scripts/skip.js"></script>
<script charset="utf-8" src="scripts/application.js"></script>
</body>
</html>