three.js ======== #### Javascript 3D Engine #### [![Flattr this](http://api.flattr.com/button/button-compact-static-100x17.png)](http://flattr.com/thing/287/three-js) Currently the engine only supports particles and triangles/quads with flat colors. The aim is to keep the code as simple and modular as possible. At the moment the engine can render using <canvas> and <svg>. WebGL rendering would come at a later stage but feel free to fork the project and have a go. Although this allows 3D for iPhoneOS and Android platforms the performance on these devices is not too good. [More info...](http://mrdoob.com/blog/post/693) Similar projects: [pre3d](http://deanm.github.com/pre3d/), [pvjs](http://code.google.com/p/pvjswebgl/), [jsjl](http://tulrich.com/geekstuff/canvas/perspective.html), [k3d](http://www.kevs3d.co.uk/dev/canvask3d/k3d_test.html), ... ### Examples ### [![materials_video](http://github.com/mrdoob/three.js/raw/master/assets/examples/05_video.png)](http://mrdoob.com/projects/three.js/examples/materials_video.html) [![geometry_vr](http://github.com/mrdoob/three.js/raw/master/assets/examples/04_vr.png)](http://mrdoob.com/projects/three.js/examples/geometry_vr.html) [![geometry_cube](http://github.com/mrdoob/three.js/raw/master/assets/examples/03_cube.png)](http://mrdoob.com/projects/three.js/examples/geometry_cube.html) [![particles_random](http://github.com/mrdoob/three.js/raw/master/assets/examples/02_random.png)](http://mrdoob.com/projects/three.js/examples/particles_random.html) [![particles_wave](http://github.com/mrdoob/three.js/raw/master/assets/examples/01_waves.png)](http://mrdoob.com/projects/three.js/examples/particles_waves.html) [![particles_floor](http://github.com/mrdoob/three.js/raw/master/assets/examples/00_floor.png)](http://mrdoob.com/projects/three.js/examples/particles_floor.html) [![Space Cannon 3D](http://github.com/mrdoob/three.js/raw/master/assets/projects/02_spacecannon.png)](http://labs.brian-stoner.com/spacecannon/) [![Alocasia](http://github.com/mrdoob/three.js/raw/master/assets/projects/04_alocasia.png)](http://arithmetric.com/projects/alocasia/) [![DDD](http://github.com/mrdoob/three.js/raw/master/assets/projects/01_ddd.png)](http://the389.com/works/three/) [![jsflowfield4d](http://github.com/mrdoob/three.js/raw/master/assets/projects/00_jsflowfield4d.png)](http://test.sjeiti.com/jsflowfield4d/) [![spikeball](http://github.com/mrdoob/three.js/raw/master/assets/projects/03_spikeball.png)](http://kile.stravaganza.org/lab/js/spikeball/) ### How to use ### The library needs to be included first thing. Now we have access to the engine classes and methods. This code creates a camera, then creates a scene object, adds a bunch of random particles to the scene, creates a <canvas> renderer and adds its viewport the document.body element. If you are interested on messing with the actual library, instead of importing the three.js compressed file, you can include the original files in this order: ### Change Log ### 2010 06 06 - **r8** (23.597 kb) * Moved UVs to Geometry. * CanvasRenderer expands screen space points (workaround for antialias gaps). * CanvasRenderer supports BitmapUVMappingMaterial. 2010 06 05 - **r7** (22.387 kb) * Added Line Object. * Workaround for WebKit not supporting rgba() in SVG yet. * No need to call updateMatrix(). Use .autoUpdateMatrix = false if needed. (thx [Gregory Athons](http://github.com/gregmax17)). 2010 05 17 - **r6** (21.003 kb) * 2d clipping on CanvasRenderer and SVGRenderer * clearRect optimisations on CanvasRenderer 2010 05 16 - **r5** (19.026 kb) * Removed Class.js dependency * Added THREE namespace * Camera.x -> Camera.position.x * Camera.target.x -> Camera.target.position.x * ColorMaterial -> ColorFillMaterial * FaceColorMaterial -> FaceColorFillMaterial * Materials are now multipass (use array) * Added ColorStrokeMaterial and FaceColorStrokeMaterial * geometry.faces.a are now indexes instead of links 2010 04 26 - **r4** (16.274 kb) * SVGRenderer Particle rendering * CanvasRenderer uses context.setTransform to avoid extra calculations 2010 04 24 - **r3** (16.392 kb) * Fixed incorrect rotation matrix transforms * Added Plane and Cube primitives 2010 04 24 - **r2** (15.724 kb) * Improved Color handling 2010 04 24 - **r1** (15.25 kb) * First alpha release