fundamentals.html 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <!DOCTYPE html><html lang="en"><head>
  2. <meta charset="utf-8">
  3. <title>Fundamentals</title>
  4. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  5. <meta name="twitter:card" content="summary_large_image">
  6. <meta name="twitter:site" content="@threejs">
  7. <meta name="twitter:title" content="Three.js – Fundamentals">
  8. <meta property="og:image" content="https://threejs.org/files/share.png">
  9. <link rel="shortcut icon" href="/files/favicon_white.ico" media="(prefers-color-scheme: dark)">
  10. <link rel="shortcut icon" href="/files/favicon.ico" media="(prefers-color-scheme: light)">
  11. <link rel="stylesheet" href="/manual/resources/lesson.css">
  12. <link rel="stylesheet" href="/manual/resources/lang.css">
  13. <!-- Import maps polyfill -->
  14. <!-- Remove this when import maps will be widely supported -->
  15. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  16. <script type="importmap">
  17. {
  18. "imports": {
  19. "three": "../../build/three.module.js"
  20. }
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <div class="lesson-title">
  27. <h1>Fundamentals</h1>
  28. </div>
  29. <div class="lesson">
  30. <div class="lesson-main">
  31. <p>This is the first article in a series of articles about three.js.
  32. <a href="https://threejs.org">Three.js</a> is a 3D library that tries to make
  33. it as easy as possible to get 3D content on a webpage.</p>
  34. <p>Three.js is often confused with WebGL since more often than
  35. not, but not always, three.js uses WebGL to draw 3D.
  36. <a href="https://webglfundamentals.org">WebGL is a very low-level system that only draws points, lines, and triangles</a>.
  37. To do anything useful with WebGL generally requires quite a bit of
  38. code and that is where three.js comes in. It handles stuff
  39. like scenes, lights, shadows, materials, textures, 3d math, all things that you'd
  40. have to write yourself if you were to use WebGL directly.</p>
  41. <p>These tutorials assume you already know JavaScript and, for the
  42. most part they will use ES6 style. <a href="prerequisites.html">See here for a
  43. terse list of things you're expected to already know</a>.
  44. Most browsers that support three.js are auto-updated so most users should
  45. be able to run this code. If you'd like to make this code run
  46. on really old browsers look into a transpiler like <a href="https://babeljs.io">Babel</a>.
  47. Of course users running really old browsers probably have machines
  48. that can't run three.js.</p>
  49. <p>When learning most programming languages the first thing people
  50. do is make the computer print <code class="notranslate" translate="no">"Hello World!"</code>. For 3D one
  51. of the most common first things to do is to make a 3D cube.
  52. So let's start with "Hello Cube!"</p>
  53. <p>Before we get started let's try to give you an idea of the structure
  54. of a three.js app. A three.js app requires you to create a bunch of
  55. objects and connect them together. Here's a diagram that represents
  56. a small three.js app</p>
  57. <div class="threejs_center"><img src="../resources/images/threejs-structure.svg" style="width: 768px;"></div>
  58. <p>Things to notice about the diagram above.</p>
  59. <ul>
  60. <li><p>There is a <a href="/docs/#api/en/constants/Renderer"><code class="notranslate" translate="no">Renderer</code></a>. This is arguably the main object of three.js. You pass a
  61. <a href="/docs/#api/en/scenes/Scene"><code class="notranslate" translate="no">Scene</code></a> and a <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a> to a <a href="/docs/#api/en/constants/Renderer"><code class="notranslate" translate="no">Renderer</code></a> and it renders (draws) the portion of
  62. the 3D scene that is inside the <em>frustum</em> of the camera as a 2D image to a
  63. canvas.</p>
  64. </li>
  65. <li><p>There is a <a href="scenegraph.html">scenegraph</a> which is a tree like
  66. structure, consisting of various objects like a <a href="/docs/#api/en/scenes/Scene"><code class="notranslate" translate="no">Scene</code></a> object, multiple
  67. <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects, <a href="/docs/#api/en/lights/Light"><code class="notranslate" translate="no">Light</code></a> objects, <a href="/docs/#api/en/objects/Group"><code class="notranslate" translate="no">Group</code></a>, <a href="/docs/#api/en/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a>, and <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a> objects. A
  68. <a href="/docs/#api/en/scenes/Scene"><code class="notranslate" translate="no">Scene</code></a> object defines the root of the scenegraph and contains properties like
  69. the background color and fog. These objects define a hierarchical parent/child
  70. tree like structure and represent where objects appear and how they are
  71. oriented. Children are positioned and oriented relative to their parent. For
  72. example the wheels on a car might be children of the car so that moving and
  73. orienting the car's object automatically moves the wheels. You can read more
  74. about this in <a href="scenegraph.html">the article on scenegraphs</a>.</p>
  75. <p>Note in the diagram <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a> is half in half out of the scenegraph. This is to
  76. represent that in three.js, unlike the other objects, a <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a> does not have
  77. to be in the scenegraph to function. Just like other objects, a <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a>, as a
  78. child of some other object, will move and orient relative to its parent object.
  79. There is an example of putting multiple <a href="/docs/#api/en/cameras/Camera"><code class="notranslate" translate="no">Camera</code></a> objects in a scenegraph at
  80. the end of <a href="scenegraph.html">the article on scenegraphs</a>.</p>
  81. </li>
  82. <li><p><a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects represent drawing a specific <code class="notranslate" translate="no">Geometry</code> with a specific
  83. <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a>. Both <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> objects and <code class="notranslate" translate="no">Geometry</code> objects can be used by
  84. multiple <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects. For example to draw two blue cubes in different
  85. locations we could need two <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects to represent the position and
  86. orientation of each cube. We would only need one <code class="notranslate" translate="no">Geometry</code> to hold the vertex
  87. data for a cube and we would only need one <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> to specify the color
  88. blue. Both <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects could reference the same <code class="notranslate" translate="no">Geometry</code> object and the
  89. same <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> object.</p>
  90. </li>
  91. <li><p><code class="notranslate" translate="no">Geometry</code> objects represent the vertex data of some piece of geometry like
  92. a sphere, cube, plane, dog, cat, human, tree, building, etc...
  93. Three.js provides many kinds of built in
  94. <a href="primitives.html">geometry primitives</a>. You can also
  95. <a href="custom-buffergeometry.html">create custom geometry</a> as well as
  96. <a href="load-obj.html">load geometry from files</a>.</p>
  97. </li>
  98. <li><p><a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> objects represent
  99. <a href="materials.html">the surface properties used to draw geometry</a>
  100. including things like the color to use and how shiny it is. A <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> can also
  101. reference one or more <a href="/docs/#api/en/textures/Texture"><code class="notranslate" translate="no">Texture</code></a> objects which can be used, for example,
  102. to wrap an image onto the surface of a geometry.</p>
  103. </li>
  104. <li><p><a href="/docs/#api/en/textures/Texture"><code class="notranslate" translate="no">Texture</code></a> objects generally represent images either <a href="textures.html">loaded from image files</a>,
  105. <a href="canvas-textures.html">generated from a canvas</a> or <a href="rendertargets.html">rendered from another scene</a>.</p>
  106. </li>
  107. <li><p><a href="/docs/#api/en/lights/Light"><code class="notranslate" translate="no">Light</code></a> objects represent <a href="lights.html">different kinds of lights</a>.</p>
  108. </li>
  109. </ul>
  110. <p>Given all of that we're going to make the smallest <em>"Hello Cube"</em> setup
  111. that looks like this</p>
  112. <div class="threejs_center"><img src="../resources/images/threejs-1cube-no-light-scene.svg" style="width: 500px;"></div>
  113. <p>First let's load three.js</p>
  114. <pre class="prettyprint showlinemods notranslate lang-html" translate="no">&lt;script type="module"&gt;
  115. import * as THREE from '../../build/three.module.js';
  116. &lt;/script&gt;
  117. </pre>
  118. <p>It's important you put <code class="notranslate" translate="no">type="module"</code> in the script tag. This enables
  119. us to use the <code class="notranslate" translate="no">import</code> keyword to load three.js. There are other ways
  120. to load three.js but as of r106 using modules is the recommended way.
  121. Modules have the advantage that they can easily import other modules
  122. they need. That saves us from having to manually load extra scripts
  123. they are dependent on.</p>
  124. <p>Next we need is a <code class="notranslate" translate="no">&lt;canvas&gt;</code> tag so...</p>
  125. <pre class="prettyprint showlinemods notranslate lang-html" translate="no">&lt;body&gt;
  126. &lt;canvas id="c"&gt;&lt;/canvas&gt;
  127. &lt;/body&gt;
  128. </pre>
  129. <p>We will ask three.js to draw into that canvas so we need to look it up.</p>
  130. <pre class="prettyprint showlinemods notranslate lang-html" translate="no">&lt;script type="module"&gt;
  131. import * as THREE from '../../build/three.module.js';
  132. +function main() {
  133. + const canvas = document.querySelector('#c');
  134. + const renderer = new THREE.WebGLRenderer({canvas});
  135. + ...
  136. &lt;/script&gt;
  137. </pre>
  138. <p>After we look up the canvas we create a <a href="/docs/#api/en/renderers/WebGLRenderer"><code class="notranslate" translate="no">WebGLRenderer</code></a>. The renderer
  139. is the thing responsible for actually taking all the data you provide
  140. and rendering it to the canvas. In the past there have been other renderers
  141. like <code class="notranslate" translate="no">CSSRenderer</code>, a <code class="notranslate" translate="no">CanvasRenderer</code> and in the future there may be a
  142. <code class="notranslate" translate="no">WebGL2Renderer</code> or <code class="notranslate" translate="no">WebGPURenderer</code>. For now there's the <a href="/docs/#api/en/renderers/WebGLRenderer"><code class="notranslate" translate="no">WebGLRenderer</code></a>
  143. that uses WebGL to render 3D to the canvas.</p>
  144. <p>Note there are some esoteric details here. If you don't pass a canvas
  145. into three.js it will create one for you but then you have to add it
  146. to your document. Where to add it may change depending on your use case
  147. and you'll have to change your code so I find that passing a canvas
  148. to three.js feels a little more flexible. I can put the canvas anywhere
  149. and the code will find it whereas if I had code to insert the canvas
  150. into to the document I'd likely have to change that code if my use case
  151. changed.</p>
  152. <p>Next up we need a camera. We'll create a <a href="/docs/#api/en/cameras/PerspectiveCamera"><code class="notranslate" translate="no">PerspectiveCamera</code></a>.</p>
  153. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const fov = 75;
  154. const aspect = 2; // the canvas default
  155. const near = 0.1;
  156. const far = 5;
  157. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  158. </pre>
  159. <p><code class="notranslate" translate="no">fov</code> is short for <code class="notranslate" translate="no">field of view</code>. In this case 75 degrees in the vertical
  160. dimension. Note that most angles in three.js are in radians but for some
  161. reason the perspective camera takes degrees.</p>
  162. <p><code class="notranslate" translate="no">aspect</code> is the display aspect of the canvas. We'll go over the details
  163. <a href="responsive.html">in another article</a> but by default a canvas is
  164. 300x150 pixels which makes the aspect 300/150 or 2.</p>
  165. <p><code class="notranslate" translate="no">near</code> and <code class="notranslate" translate="no">far</code> represent the space in front of the camera
  166. that will be rendered. Anything before that range or after that range
  167. will be clipped (not drawn).</p>
  168. <p>Those four settings define a <em>"frustum"</em>. A <em>frustum</em> is the name of
  169. a 3d shape that is like a pyramid with the tip sliced off. In other
  170. words think of the word "frustum" as another 3D shape like sphere,
  171. cube, prism, frustum.</p>
  172. <p><img src="../resources/frustum-3d.svg" width="500" class="threejs_center"></p>
  173. <p>The height of the near and far planes are determined by the field of view.
  174. The width of both planes is determined by the field of view and the aspect.</p>
  175. <p>Anything inside the defined frustum will be be drawn. Anything outside
  176. will not.</p>
  177. <p>The camera defaults to looking down the -Z axis with +Y up. We'll put our cube
  178. at the origin so we need to move the camera back a little from the origin
  179. in order to see anything.</p>
  180. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">camera.position.z = 2;
  181. </pre>
  182. <p>Here's what we're aiming for.</p>
  183. <p><img src="../resources/scene-down.svg" width="500" class="threejs_center"></p>
  184. <p>In the diagram above we can see our camera is at <code class="notranslate" translate="no">z = 2</code>. It's looking
  185. down the -Z axis. Our frustum starts 0.1 units from the front of the camera
  186. and goes to 5 units in front of the camera. Because in this diagram we are looking down,
  187. the field of view is affected by the aspect. Our canvas is twice as wide
  188. as it is tall so across the canvas the field of view will be much wider than
  189. our specified 75 degrees which is the vertical field of view.</p>
  190. <p>Next we make a <a href="/docs/#api/en/scenes/Scene"><code class="notranslate" translate="no">Scene</code></a>. A <a href="/docs/#api/en/scenes/Scene"><code class="notranslate" translate="no">Scene</code></a> in three.js is the root of a form of scene graph.
  191. Anything you want three.js to draw needs to be added to the scene. We'll
  192. cover more details of <a href="scenegraph.html">how scenes work in a future article</a>.</p>
  193. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const scene = new THREE.Scene();
  194. </pre>
  195. <p>Next up we create a <a href="/docs/#api/en/geometries/BoxGeometry"><code class="notranslate" translate="no">BoxGeometry</code></a> which contains the data for a box.
  196. Almost anything we want to display in Three.js needs geometry which defines
  197. the vertices that make up our 3D object.</p>
  198. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const boxWidth = 1;
  199. const boxHeight = 1;
  200. const boxDepth = 1;
  201. const geometry = new THREE.BoxGeometry(boxWidth, boxHeight, boxDepth);
  202. </pre>
  203. <p>We then create a basic material and set its color. Colors can
  204. be specified using standard CSS style 6 digit hex color values.</p>
  205. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const material = new THREE.MeshBasicMaterial({color: 0x44aa88});
  206. </pre>
  207. <p>We then create a <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a>. A <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> in three represents the combination
  208. of a three things</p>
  209. <ol>
  210. <li>A <code class="notranslate" translate="no">Geometry</code> (the shape of the object)</li>
  211. <li>A <a href="/docs/#api/en/materials/Material"><code class="notranslate" translate="no">Material</code></a> (how to draw the object, shiny or flat, what color, what texture(s) to apply. Etc.)</li>
  212. <li>The position, orientation, and scale of that object in the scene relative to its parent. In the code below that parent is the scene.</li>
  213. </ol>
  214. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const cube = new THREE.Mesh(geometry, material);
  215. </pre>
  216. <p>And finally we add that mesh to the scene</p>
  217. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">scene.add(cube);
  218. </pre>
  219. <p>We can then render the scene by calling the renderer's render function
  220. and passing it the scene and the camera</p>
  221. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">renderer.render(scene, camera);
  222. </pre>
  223. <p>Here's a working example</p>
  224. <p></p><div translate="no" class="threejs_example_container notranslate">
  225. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/fundamentals.html"></iframe></div>
  226. <a class="threejs_center" href="/manual/examples/fundamentals.html" target="_blank">click here to open in a separate window</a>
  227. </div>
  228. <p></p>
  229. <p>It's kind of hard to tell that is a 3D cube since we're viewing
  230. it directly down the -Z axis and the cube itself is axis aligned
  231. so we're only seeing a single face.</p>
  232. <p>Let's animate it spinning and hopefully that will make
  233. it clear it's being drawn in 3D. To animate it we'll render inside a render loop using
  234. <a href="https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame"><code class="notranslate" translate="no">requestAnimationFrame</code></a>.</p>
  235. <p>Here's our loop</p>
  236. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function render(time) {
  237. time *= 0.001; // convert time to seconds
  238. cube.rotation.x = time;
  239. cube.rotation.y = time;
  240. renderer.render(scene, camera);
  241. requestAnimationFrame(render);
  242. }
  243. requestAnimationFrame(render);
  244. </pre>
  245. <p><code class="notranslate" translate="no">requestAnimationFrame</code> is a request to the browser that you want to animate something.
  246. You pass it a function to be called. In our case that function is <code class="notranslate" translate="no">render</code>. The browser
  247. will call your function and if you update anything related to the display of the
  248. page the browser will re-render the page. In our case we are calling three's
  249. <code class="notranslate" translate="no">renderer.render</code> function which will draw our scene.</p>
  250. <p><code class="notranslate" translate="no">requestAnimationFrame</code> passes the time since the page loaded to
  251. our function. That time is passed in milliseconds. I find it's much
  252. easier to work with seconds so here we're converting that to seconds.</p>
  253. <p>We then set the cube's X and Y rotation to the current time. These rotations
  254. are in <a href="https://en.wikipedia.org/wiki/Radian">radians</a>. There are 2 pi radians
  255. in a circle so our cube should turn around once on each axis in about 6.28
  256. seconds.</p>
  257. <p>We then render the scene and request another animation frame to continue
  258. our loop.</p>
  259. <p>Outside the loop we call <code class="notranslate" translate="no">requestAnimationFrame</code> one time to start the loop.</p>
  260. <p></p><div translate="no" class="threejs_example_container notranslate">
  261. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/fundamentals-with-animation.html"></iframe></div>
  262. <a class="threejs_center" href="/manual/examples/fundamentals-with-animation.html" target="_blank">click here to open in a separate window</a>
  263. </div>
  264. <p></p>
  265. <p>It's a little better but it's still hard to see the 3d. What would help is to
  266. add some lighting so let's add a light. There are many kinds of lights in
  267. three.js which we'll go over in <a href="lights.html">a future article</a>. For now let's create a directional light.</p>
  268. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
  269. const color = 0xFFFFFF;
  270. const intensity = 1;
  271. const light = new THREE.DirectionalLight(color, intensity);
  272. light.position.set(-1, 2, 4);
  273. scene.add(light);
  274. }
  275. </pre>
  276. <p>Directional lights have a position and a target. Both default to 0, 0, 0. In our
  277. case we're setting the light's position to -1, 2, 4 so it's slightly on the left,
  278. above, and behind our camera. The target is still 0, 0, 0 so it will shine
  279. toward the origin.</p>
  280. <p>We also need to change the material. The <a href="/docs/#api/en/materials/MeshBasicMaterial"><code class="notranslate" translate="no">MeshBasicMaterial</code></a> is not affected by
  281. lights. Let's change it to a <a href="/docs/#api/en/materials/MeshPhongMaterial"><code class="notranslate" translate="no">MeshPhongMaterial</code></a> which is affected by lights.</p>
  282. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">-const material = new THREE.MeshBasicMaterial({color: 0x44aa88}); // greenish blue
  283. +const material = new THREE.MeshPhongMaterial({color: 0x44aa88}); // greenish blue
  284. </pre>
  285. <p>Here is our new program structure</p>
  286. <div class="threejs_center"><img src="../resources/images/threejs-1cube-with-directionallight.svg" style="width: 500px;"></div>
  287. <p>And here it is working.</p>
  288. <p></p><div translate="no" class="threejs_example_container notranslate">
  289. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/fundamentals-with-light.html"></iframe></div>
  290. <a class="threejs_center" href="/manual/examples/fundamentals-with-light.html" target="_blank">click here to open in a separate window</a>
  291. </div>
  292. <p></p>
  293. <p>It should now be pretty clearly 3D.</p>
  294. <p>Just for the fun of it let's add 2 more cubes.</p>
  295. <p>We'll use the same geometry for each cube but make a different
  296. material so each cube can be a different color.</p>
  297. <p>First we'll make a function that creates a new material
  298. with the specified color. Then it creates a mesh using
  299. the specified geometry and adds it to the scene and
  300. sets its X position.</p>
  301. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function makeInstance(geometry, color, x) {
  302. const material = new THREE.MeshPhongMaterial({color});
  303. const cube = new THREE.Mesh(geometry, material);
  304. scene.add(cube);
  305. cube.position.x = x;
  306. return cube;
  307. }
  308. </pre>
  309. <p>Then we'll call it 3 times with 3 different colors and X positions
  310. saving the <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> instances in an array.</p>
  311. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const cubes = [
  312. makeInstance(geometry, 0x44aa88, 0),
  313. makeInstance(geometry, 0x8844aa, -2),
  314. makeInstance(geometry, 0xaa8844, 2),
  315. ];
  316. </pre>
  317. <p>Finally we'll spin all 3 cubes in our render function. We
  318. compute a slightly different rotation for each one.</p>
  319. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function render(time) {
  320. time *= 0.001; // convert time to seconds
  321. cubes.forEach((cube, ndx) =&gt; {
  322. const speed = 1 + ndx * .1;
  323. const rot = time * speed;
  324. cube.rotation.x = rot;
  325. cube.rotation.y = rot;
  326. });
  327. ...
  328. </pre>
  329. <p>and here's that.</p>
  330. <p></p><div translate="no" class="threejs_example_container notranslate">
  331. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/fundamentals-3-cubes.html"></iframe></div>
  332. <a class="threejs_center" href="/manual/examples/fundamentals-3-cubes.html" target="_blank">click here to open in a separate window</a>
  333. </div>
  334. <p></p>
  335. <p>If you compare it to the top down diagram above you can see
  336. it matches our expectations. With cubes at X = -2 and X = +2
  337. they are partially outside our frustum. They are also
  338. somewhat exaggeratedly warped since the field of view
  339. across the canvas is so extreme.</p>
  340. <p>Our program now has this structure</p>
  341. <div class="threejs_center"><img src="../resources/images/threejs-3cubes-scene.svg" style="width: 610px;"></div>
  342. <p>As you can see we have 3 <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> objects each referencing the same <a href="/docs/#api/en/geometries/BoxGeometry"><code class="notranslate" translate="no">BoxGeometry</code></a>.
  343. Each <a href="/docs/#api/en/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> references a unique <a href="/docs/#api/en/materials/MeshPhongMaterial"><code class="notranslate" translate="no">MeshPhongMaterial</code></a> so that each cube can have
  344. a different color.</p>
  345. <p>I hope this short intro helps to get things started. <a href="responsive.html">Next up we'll cover
  346. making our code responsive so it is adaptable to multiple situations</a>.</p>
  347. <div id="es6" class="threejs_bottombar">
  348. <h3>es6 modules, three.js, and folder structure</h3>
  349. <p>As of version r106 the preferred way to use three.js is via <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import">es6 modules</a>.</p>
  350. <p>
  351. es6 modules can be loaded via the <code class="notranslate" translate="no">import</code> keyword in a script
  352. or inline via a <code class="notranslate" translate="no">&lt;script type="module"&gt;</code> tag. Here's an example of
  353. both
  354. </p>
  355. <pre class="prettyprint">&lt;script type="module"&gt;
  356. import * as THREE from '../../build/three.module.js';
  357. ...
  358. &lt;/script&gt;
  359. </pre>
  360. <p>
  361. Paths must be absolute or relative. Relative paths always start with <code class="notranslate" translate="no">./</code> or <code class="notranslate" translate="no">../</code>
  362. which is different than other tags like <code class="notranslate" translate="no">&lt;img&gt;</code> and <code class="notranslate" translate="no">&lt;a&gt;</code>.
  363. </p>
  364. <p>
  365. References to the same script will only be loaded once as long as their absolute paths
  366. are exactly the same. For three.js this means it's required that you put all the examples
  367. libraries in the correct folder structure
  368. </p>
  369. <pre class="dos">someFolder
  370. |
  371. ├-build
  372. | |
  373. | +-three.module.js
  374. |
  375. +-examples
  376. |
  377. +-jsm
  378. |
  379. +-controls
  380. | |
  381. | +-OrbitControls.js
  382. | +-TrackballControls.js
  383. | +-...
  384. |
  385. +-loaders
  386. | |
  387. | +-GLTFLoader.js
  388. | +-...
  389. |
  390. ...
  391. </pre>
  392. <p>
  393. The reason this folder structure is required is because the scripts in the
  394. examples like <a href="https://github.com/mrdoob/three.js/blob/master/examples/jsm/controls/OrbitControls.js"><code class="notranslate" translate="no">OrbitControls.js</code></a>
  395. have hard coded relative paths like
  396. </p>
  397. <pre class="prettyprint">import * as THREE from '../../../build/three.module.js';
  398. </pre>
  399. <p>
  400. Using the same structure assures then when you import both three and one of the example
  401. libraries they'll both reference the same <code class="notranslate" translate="no">three.module.js</code> file.
  402. </p>
  403. <pre class="prettyprint">import * as THREE from './someFolder/build/three.module.js';
  404. import {OrbitControls} from './someFolder/examples/jsm/controls/OrbitControls.js';
  405. </pre>
  406. <p>This includes when using a CDN. Be sure your path to <code class="notranslate" translate="no">three.module.js</code> ends with
  407. <code class="notranslate" translate="no">/build/three.modules.js</code>. For example</p>
  408. <pre class="prettyprint">import * as THREE from 'https://unpkg.com/[email protected]<b>/build/three.module.js</b>';
  409. import {OrbitControls} from 'https://unpkg.com/[email protected]/examples/jsm/controls/OrbitControls.js';
  410. </pre>
  411. </div>
  412. <!-- needed in English only to prevent warning from outdated translations -->
  413. <p><a href="geometry.html"></a>
  414. <a href="Geometry"></a></p>
  415. </div>
  416. </div>
  417. </div>
  418. <script src="/manual/resources/prettify.js"></script>
  419. <script src="/manual/resources/lesson.js"></script>
  420. </body></html>