Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Learn Three.js
Learn Three.js

Learn Three.js: Programming 3D animations and visualizations for the web with HTML5 and WebGL , Third Edition

eBook
€23.99 €34.99
Paperback
€43.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

Learn Three.js

The Basic Components that Make Up a Three.js Application

In the previous chapter, you learned the basics of Three.js. We looked at a couple of examples, and you created your first complete Three.js application. In this chapter, we'll dive a bit deeper into Three.js and explain the basic components that make up a Three.js application. In this chapter, you'll explore the following topics:

  • The main components that you can use to create a Three.js application
  • What you can do with the THREE.Scene object
  • How geometries and meshes are related
  • The difference between the orthographic and perspective cameras

We'll start by looking at how you can create a scene and add objects.

Creating a scene

In the previous Chapter 1, Creating Your First 3D Scene with Three.js, you created THREE.Scene, so you already know the basics of Three.js. We saw that for a scene to show anything, we need four types of component:

Component

Description

Camera

This determines what is rendered on the screen.

Lights

These have an effect on how materials are shown and are used when creating shadow effects (discussed in detail in Chapter 3Working with the Different Light Sources Available in Three.js).

Objects

These are the main objects that are rendered from the perspective of the camera, they include cubes, spheres, and point clouds.

Renderer

Uses the camera and the information from the scene to draw the output on the screen.

 

THREE.Scene serves as the container for the lights and the objects. THREE.Scene itself...

Geometries and meshes

In each of the examples so far, you've seen geometries and meshes being used. For instance, to add a sphere to the scene, we did the following:

var sphereGeometry = new THREE.SphereGeometry(4,20,20); 
var sphereMaterial = new THREE.MeshBasicMaterial({color: 0x7777ff); 
var sphere = new THREE.Mesh(sphereGeometry,sphereMaterial); 

We define the geometry (THREE.SphereGeometry), the shape of an object, and its material (THREE.MeshBasicMaterial), and we combined these two in a mesh (THREE.Mesh) that can be added to a scene. In this section, we'll take a closer look at geometries and meshes. We'll start with the geometry.

The properties and functions of a geometry

Three.js comes with a large...

Different cameras for different uses

There are two different camera types in Three.js: the orthographic camera and the perspective camera. In Chapter 3, Working with the Different Light Sources Available in Three.js, we'll take a much more detailed look at how to work with these cameras, so in this chapter, we'll stick to the basics. Note that Three.js also provides a couple of very specific cameras for creating scenes that can be viewed using 3D glasses or VR gear. We won't go into detail for those cameras in this book, since they work exactly the same as the cameras explained in this chapter.

If you're looking for simple VR cameras, you can use THREE.StereoCamera to create 3D scenes that are rendered side to side (standard stereo effect), use a parallel barrier (as 3DS provides), or provide an anaglyph effect where the different views are rendered in...

Summary

We discussed a lot in this second introductory chapter. We showed the functions and properties of THREE.Scene and explained how you can use these properties to configure your main scene. We also showed you how to create geometries. You can either create them from scratch using a THREE.Geometry object or use any of the built-in geometries Three.js provides. Finally, we showed you how to configure the two main cameras Three.js provides. THREE.PerspectiveCamera renders a scene using a real-world perspective, and THREE.OrthographicCamera provides the fake 3D effect often seen in games. We've also covered how geometries work in Three.js and you can now easily create your own geometries from the standard geometries provided by Three.js or by crafting them by hand.

In the next chapters, we'll look at the various light sources that are available in Three.js. You&apos...

Left arrow icon Right arrow icon

Key benefits

  • Enhance your 3D graphics with light sources, shadows, advanced materials, and textures
  • Load models from external sources, and visualize and animate them directly from JavaScript
  • Create your own custom WebGL shader and explore the postprocessing feature of Three.js

Description

WebGL makes it possible to create 3D graphics in the browser without having to use plugins such as Flash and Java. Programming WebGL, however, is difficult and complex. With Three.js, it is possible to create stunning 3D graphics in an intuitive manner using JavaScript, without having to learn WebGL. With this book, you’ll learn how to create and animate beautiful looking 3D scenes directly in your browser-utilizing the full potential of WebGL and modern browsers. It starts with the basic concepts and building blocks used in Three.js. From there on, it will expand on these subjects using extensive examples and code samples. You will learn to create, or load, from externally created models, realistic looking 3D objects using materials and textures. You’ll find out how to easily control the camera using the Three.js built-in in camera controls, which will enable you to fly or walk around the 3D scene you created. You will then use the HTML5 video and canvas elements as a material for your 3D objects and to animate your models. Finally, you will learn to use morph and skeleton-based animation, and even how to add physics, such as gravity and collision detection, to your scene. After reading this book, you’ll know everything that is required to create 3D animated graphics using Three.js.

Who is this book for?

The ideal target audience for this book would be JavaScript developers who who want to learn how to use the Three.js library

What you will learn

  • Work with the different types of materials in Three.js and see how they interact with your 3D objects and the rest of the environment
  • Implement the different camera controls provided by Three.js to effortlessly navigate around your 3D scene
  • Work with vertices directly to create snow, rain, and galaxy-like effects
  • Import and animate models from external formats, such as OBJ, STL, and COLLADA
  • Create and run animations using morph targets and bones animations
  • Explore advanced textures on materials to create realistic looking 3D objects by using bump maps, normal maps, specular maps, and light maps
  • Interact directly with WebGL by creating custom vertex and fragment shaders

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 31, 2018
Length: 528 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788835978
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : Aug 31, 2018
Length: 528 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788835978
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 185.97
Learn Three.js
€43.99
Real-Time 3D Graphics with WebGL 2
€37.99
Hands-on Three.js 3D Web Visualisations
€103.99
Total 185.97 Stars icon

Table of Contents

13 Chapters
Creating Your First 3D Scene with Three.js Chevron down icon Chevron up icon
The Basic Components that Make Up a Three.js Application Chevron down icon Chevron up icon
Working with Light Sources in Three.js Chevron down icon Chevron up icon
Working with Three.js Materials Chevron down icon Chevron up icon
Learning to Work with Geometries Chevron down icon Chevron up icon
Advanced Geometries and Binary Operations Chevron down icon Chevron up icon
Points and Sprites Chevron down icon Chevron up icon
Creating and Loading Advanced Meshes and Geometries Chevron down icon Chevron up icon
Animations and Moving the Camera Chevron down icon Chevron up icon
Loading and Working with Textures Chevron down icon Chevron up icon
Render Postprocessing Chevron down icon Chevron up icon
Adding Physics and Sounds to Your Scene Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
(4 Ratings)
5 star 25%
4 star 0%
3 star 50%
2 star 0%
1 star 25%
Michael Stather Jun 05, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Super ;)
Amazon Verified review Amazon
Benjamin Kieper Aug 29, 2023
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Es wird gerade soviel gezeigt, dass man ein 3D Modell laden kann. Es wäre aber genug Platz für LOD oder Layers gewesen...
Amazon Verified review Amazon
Rax Jan 30, 2020
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
El libro tiene muy buena información, pero requerí investigar por mi cuenta para completar un proyecto que tenia.
Amazon Verified review Amazon
Janco Verduin Feb 13, 2024
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
First i was sent the wrong version and then they claimed it was my fault. After several emails I finally got the pdf I thought I had bought, buy their service is repulsive.
Feefo Verified review Feefo
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.