Trisha Shetty (Editor)

Three.js

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
Three.js Authors

Written in
  
JavaScript

Development status
  
Active

Three.js

Original author(s)
  
Ricardo Cabello (Mr.doob)

Initial release
  
April 24, 2010 (2010-04-24)

Stable release
  
r83 / December 15, 2016 (2016-12-15)

Three.js is a cross-browser JavaScript library/API used to create and display animated 3D computer graphics in a web browser. Three.js uses WebGL. The source code is hosted in a repository on GitHub.

Contents

Overview

Three.js allows the creation of GPU-accelerated 3D animations using the JavaScript language as part of a website without relying on proprietary browser plugins. This is possible thanks to the advent of WebGL.

High-level libraries such as Three.js or GLGE, SceneJS, PhiloGL or a number of other libraries make it possible to author complex 3D computer animations that display in the browser without the effort required for a traditional standalone application or a plugin.

History

Three.js was first released by Ricardo Cabello to GitHub in April 2010. The origins of the library can be traced back to his involvement with the demoscene in the early 2000s. The code was first developed in ActionScript, then in 2009 ported to JavaScript. In Cabello's mind, the two strong points for the transfer to JavaScript were not having to compile the code before each run and platform independence. With the advent of WebGL, Paul Brunt was able to add the renderer for this quite easily as Three.js was designed with the rendering code as a module rather than in the core itself. Cabello's contributions include API design, CanvasRenderer, SVGRenderer and being responsible for merging the commits by the various contributors into the project.

The second contributor in terms of commits, Branislav Ulicny started with Three.js in 2010 after having posted a number of WebGL demos on his own site. He wanted WebGL renderer capabilities in Three.js to exceed those of CanvasRenderer or SVGRenderer. His major contributions generally involve materials, shaders and post-processing.

Soon after the introduction of WebGL 1.0 on Firefox 4 in March 2011, Joshua Koo came on board. He built his first Three.js demo for 3D text in September 2011. His contributions frequently relate to geometry generation.

There are over 650 contributors in total.

Features

Three.js includes the following features:

  • Effects: Anaglyph, cross-eyed and parallax barrier.
  • Scenes: add and remove objects at run-time; fog
  • Cameras: perspective and orthographic; controllers: trackball, FPS, path and more
  • Animation: armatures, forward kinematics, inverse kinematics, morph and keyframe
  • Lights: ambient, direction, point and spot lights; shadows: cast and receive
  • Materials: Lambert, Phong, smooth shading, textures and more
  • Shaders: access to full OpenGL Shading Language (GLSL) capabilities: lens flare, depth pass and extensive post-processing library
  • Objects: meshes, particles, sprites, lines, ribbons, bones and more - all with Level of detail
  • Geometry: plane, cube, sphere, torus, 3D text and more; modifiers: lathe, extrude and tube
  • Data loaders: binary, image, JSON and scene
  • Utilities: full set of time and 3D math functions including frustum, matrix, quaternion, UVs and more
  • Export and import: utilities to create Three.js-compatible JSON files from within: Blender, openCTM, FBX, Max, and OBJ
  • Support: API documentation is under construction, public forum and wiki in full operation
  • Examples: Over 150 files of coding examples plus fonts, models, textures, sounds and other support files
  • Debugging: Stats.js, WebGL Inspector, Three.js Inspector
  • Three.js runs in all browsers supported by WebGL 1.0.

    Three.js is made available under the MIT license.

    Usage

    The Three.js library is a single JavaScript file. It can be included within a web page by linking to a local or remote copy.

    The following code creates a scene, adds a camera and a cube to the scene, creates a WebGL renderer and adds its viewport in the document.body element. Once loaded, the cube rotates about its X- and Y-axis.

    Selected Uses and Works

    The Three.js library is being used for a wide variety of applications and purposes. The following lists identify selected uses and works.

    Mixed Media

  • The Little Black Jacket, 2012, CHANEL's classic revisited by Karl Lagerfeld and Carine Roitfeld. An online exhibition displaying 113 pictures of celebrities photographed by Karl Lagerfeld.
  • Daftunes, 2012, an interactive sound visualizing project.
  • PlayPit, 2012
  • Rome the album | 3 Dreams in Black the film, 2011, produced by Chris Milk. "'3 Dreams of Black' is the trippiest WebGL interactive music video you've seen all day"
  • One Millionth Tower, 2011 - "It exists in a 3-D setting made possible by a JavaScript library called three.js, which lets viewers walk around the high-rise neighborhood." -
  • Ellie Goulding's Lights, 12 October 2011, "an interactive & colorful music video experience using webgl"
  • Hello Racer, 2011 - Awarded the FWA Site Of The Day for today, June 5, 2011
  • WebGL Reader, 2011
  • The Wilderness Downtown, 2010
  • Audible Visuals, 2016, collection of audio visualizers derived from the Archimedean spiral.
  • Model Visualization and Scene Creation Applications

  • 3D Gerber Viewer
  • Clara.io
  • Kuda
  • Our Bricks
  • P3D
  • repovizz
  • Shapesmith
  • Stackhack
  • Sunglass
  • ThingView
  • Three Fab
  • ThreeNodes
  • ThreeScene
  • Verold Studio
  • WebGL Craft
  • zb3D Grapher
  • SimLab Composer
  • Game and Simulation Authoring Tools

  • AgentCubes - a game design tool including 3D modeling and drag and drop programming , 2013
  • Games

  • Cube - a game about Google Maps, 2012
  • Ocuara - a Survival Horror MMO Proof-of-concept, 2014
  • MafiaEmpires - a Mafia MMO, 2014
  • Tiny Shipping, 2012
  • Marble Soccer, 2012
  • Three.js Tetris, 2012
  • Trigger Rally, 2012
  • ChuClone, 2012
  • WebGL Zombies vs Cow, 2012
  • Pacmaze, 2011 - a FOSS multiplayer online 3D Pac-Man clone
  • Slimetribe - turn-based and RPG-like game experiment, 2012
  • Street basketball, 2016
  • / Laby, 2017
  • Education

  • Interactive 3D Graphics - Massive Open Online Course, 2013
  • PhysGL.org (http://www.physgl.org) - JavaScript wrappers to three.js with an web-based IDE, to make 3D graphics easily accessible to students and teachers, 2012
  • Community

    Online IDEs with built-in support for Three.js are available at WebGL Playground, HTML Snippet and jsFiddle. Documentation is available for the API as well as general advice on the Wiki. Support for developers committing to the library is provided via the Issues forum on GitHub, while support for developers building apps and web pages is provided via StackOverflow. Real-time on-line support is provided using IRC via Freenode. Most of the developers are also on Twitter.

    References

    Three.js Wikipedia