README.md 14.3 KB
Newer Older
M
testing  
Mr.doob 已提交
1 2 3
three.js
========

M
Mr.doob 已提交
4
#### Javascript 3D Engine ####
M
Mr.doob 已提交
5

M
r5  
Mr.doob 已提交
6 7
[![Flattr this](http://api.flattr.com/button/button-compact-static-100x17.png)](http://flattr.com/thing/287/three-js)

8
The aim of this project is to create a lightweight 3D engine with a very low level of abstraction (aka for dummies). Currently there is no documentation available but feel free to use the examples as a reference and/or read the source code. However, be aware that the API may change from revision to revision breaking compatibility.
9

M
Mr.doob 已提交
10
The engine can render using <canvas>, <svg> and WebGL.
M
Mr.doob 已提交
11

M
Mr.doob 已提交
12 13
[More info...](http://mrdoob.com/blog/post/693)

14
Other similar projects: [pre3d](http://deanm.github.com/pre3d/), [pvjs](http://code.google.com/p/pvjswebgl/), [jsgl](http://tulrich.com/geekstuff/canvas/perspective.html), [k3d](http://www.kevs3d.co.uk/dev/canvask3d/k3d_test.html), ...
M
Mr.doob 已提交
15

M
Mr.doob 已提交
16
### Examples ###
M
Mr.doob 已提交
17

18
[![large_mesh](http://mrdoob.github.com/three.js/assets/examples/12_large_mesh.png)](http://mrdoob.github.com/three.js/examples/geometry_large_mesh.html)
M
Mr.doob 已提交
19
[![interactive_cubes](http://mrdoob.github.com/three.js/assets/examples/11_interactive.png)](http://mrdoob.github.com/three.js/examples/interactive_cubes.html)
M
Mr.doob 已提交
20
[![camera_ortographic](http://mrdoob.github.com/three.js/assets/examples/10_orthographic.png)](http://mrdoob.github.com/three.js/examples/camera_orthographic.html)
M
Mr.doob 已提交
21
[![lights_pointlights](http://mrdoob.github.com/three.js/assets/examples/09_walthead.png)](http://mrdoob.github.com/three.js/examples/lights_pointlights.html)
M
Mr.doob 已提交
22 23 24 25 26 27 28 29 30
[![geometry_birds](http://mrdoob.github.com/three.js/assets/examples/08_birds.png)](http://mrdoob.github.com/three.js/examples/geometry_birds.html)
[![geometry_earth](http://mrdoob.github.com/three.js/assets/examples/07_earth.png)](http://mrdoob.github.com/three.js/examples/geometry_earth.html)
[![geometry_terrain](http://mrdoob.github.com/three.js/assets/examples/06_terrain.png)](http://mrdoob.github.com/three.js/examples/geometry_terrain.html)
[![materials_video](http://mrdoob.github.com/three.js/assets/examples/05_video.png)](http://mrdoob.github.com/three.js/examples/materials_video.html)
[![geometry_vr](http://mrdoob.github.com/three.js/assets/examples/04_vr.png)](http://mrdoob.github.com/three.js/examples/geometry_vr.html)
[![geometry_cube](http://mrdoob.github.com/three.js/assets/examples/03_cube.png)](http://mrdoob.github.com/three.js/examples/geometry_cube.html)
[![particles_random](http://mrdoob.github.com/three.js/assets/examples/02_random.png)](http://mrdoob.github.com/three.js/examples/particles_random.html)
[![particles_wave](http://mrdoob.github.com/three.js/assets/examples/01_waves.png)](http://mrdoob.github.com/three.js/examples/particles_waves.html)
[![particles_floor](http://mrdoob.github.com/three.js/assets/examples/00_floor.png)](http://mrdoob.github.com/three.js/examples/particles_floor.html)
M
Mr.doob 已提交
31

32 33
### Featured projects ###

M
Mr.doob 已提交
34
[![Voxels](http://mrdoob.github.com/three.js/assets/projects/10_voxels.png)](http://mrdoob.com/projects/voxels/)
M
Mr.doob 已提交
35
[![The Wilderness Downtown](http://mrdoob.github.com/three.js/assets/projects/09_arcadefire.png)](http://thewildernessdowntown.com/)
M
Mr.doob 已提交
36
[![CloudSCAD](http://mrdoob.github.com/three.js/assets/projects/08_cloudscad.png)](http://cloudscad.com/stl_viewer/)
37
[![Or so they say...](http://mrdoob.github.com/three.js/assets/projects/07_orsotheysay.png)](http://xplsv.com/prods/demos/xplsv_orsotheysay/)
M
Mr.doob 已提交
38 39 40 41 42 43 44
[![Rat](http://mrdoob.github.com/three.js/assets/projects/06_rat.png)](http://tech.lab212.org/2010/07/export-textured-models-from-blender2-5-to-three-js/)
[![Failure](http://mrdoob.github.com/three.js/assets/projects/05_failure.png)](http://www.is-real.net/experiments/three/failure/)
[![Space Cannon 3D](http://mrdoob.github.com/three.js/assets/projects/02_spacecannon.png)](http://labs.brian-stoner.com/spacecannon/)
[![Alocasia](http://mrdoob.github.com/three.js/assets/projects/04_alocasia.png)](http://arithmetric.com/projects/alocasia/)
[![DDD](http://mrdoob.github.com/three.js/assets/projects/01_ddd.png)](http://the389.com/works/three/)
[![jsflowfield4d](http://mrdoob.github.com/three.js/assets/projects/00_jsflowfield4d.png)](http://test.sjeiti.com/jsflowfield4d/)
[![spikeball](http://mrdoob.github.com/three.js/assets/projects/03_spikeball.png)](http://kile.stravaganza.org/lab/js/spikeball/)
M
Mr.doob 已提交
45

M
Mr.doob 已提交
46
### Usage ###
M
Mr.doob 已提交
47

M
Mr.doob 已提交
48
Download the [minified library](http://mrdoob.github.com/three.js/build/Three.js) and include it in your html.
M
Mr.doob 已提交
49

50
	<script type="text/javascript" src="js/Three.js"></script>
M
Mr.doob 已提交
51

M
Mr.doob 已提交
52
This code creates a camera, then creates a scene object, adds a bunch of random particles in it, creates a &lt;canvas&gt; renderer and adds its viewport in the document.body element.
M
Mr.doob 已提交
53 54 55 56

	<script type="text/javascript">

		var camera, scene, renderer;
57

M
Mr.doob 已提交
58
		init();
59
		setInterval( loop, 1000 / 60 );
M
Mr.doob 已提交
60

M
Mr.doob 已提交
61
		function init() {
M
Mr.doob 已提交
62

63
			camera = new THREE.Camera( 75, window.innerWidth / window.innerHeight, 1, 10000 );
64
			camera.position.z = 1000;
M
Mr.doob 已提交
65

M
Mr.doob 已提交
66
			scene = new THREE.Scene();
M
Mr.doob 已提交
67

M
Mr.doob 已提交
68
			for (var i = 0; i < 1000; i++) {
M
Mr.doob 已提交
69

M
Mr.doob 已提交
70
				var particle = new THREE.Particle( new THREE.ParticleCircleMaterial( { corlor: Math.random() * 0x808008 + 0x808080, opacity: 1 } ) );
M
Mr.doob 已提交
71 72 73
				particle.position.x = Math.random() * 2000 - 1000;
				particle.position.y = Math.random() * 2000 - 1000;
				particle.position.z = Math.random() * 2000 - 1000;
M
Mr.doob 已提交
74
				particle.scale.x = particle.scale.y = Math.random() * 10 + 5;
M
Mr.doob 已提交
75
				scene.addObject( particle );
M
Mr.doob 已提交
76

M
Mr.doob 已提交
77 78
			}

M
Mr.doob 已提交
79 80 81
			renderer = new THREE.CanvasRenderer();
			renderer.setSize( window.innerWidth, window.innerHeight );

82
			document.body.appendChild( renderer.domElement );
M
Mr.doob 已提交
83

84 85
		}

M
Mr.doob 已提交
86
		function loop() {
M
Mr.doob 已提交
87

88
			renderer.render( scene, camera );
M
Mr.doob 已提交
89

M
Mr.doob 已提交
90
		}
M
Mr.doob 已提交
91

M
Mr.doob 已提交
92
	</script>
93

94
For creating a customised version of the library, including the source files in this order would be a good way to start:
95

M
Mr.doob 已提交
96 97 98 99
	<script type="text/javascript" src="js/three/Three.js"></script>
	<script type="text/javascript" src="js/three/core/Color.js"></script>
	<script type="text/javascript" src="js/three/core/Vector2.js"></script>
	<script type="text/javascript" src="js/three/core/Vector3.js"></script>
100
	<script type="text/javascript" src="js/three/core/Vector4.js"></script>
101
	<script type="text/javascript" src="js/three/core/Ray.js"></script>
M
Mr.doob 已提交
102
	<script type="text/javascript" src="js/three/core/Rectangle.js"></script>
103
	<script type="text/javascript" src="js/three/core/Matrix3.js"></script>
M
Mr.doob 已提交
104 105 106 107
	<script type="text/javascript" src="js/three/core/Matrix4.js"></script>
	<script type="text/javascript" src="js/three/core/Vertex.js"></script>
	<script type="text/javascript" src="js/three/core/Face3.js"></script>
	<script type="text/javascript" src="js/three/core/Face4.js"></script>
108
	<script type="text/javascript" src="js/three/core/UV.js"></script>
M
Mr.doob 已提交
109 110
	<script type="text/javascript" src="js/three/core/Geometry.js"></script>
	<script type="text/javascript" src="js/three/cameras/Camera.js"></script>
111
	<script type="text/javascript" src="js/three/io/Loader.js"></script>
M
Mr.doob 已提交
112 113 114
	<script type="text/javascript" src="js/three/lights/Light.js"></script>
	<script type="text/javascript" src="js/three/lights/AmbientLight.js"></script>
	<script type="text/javascript" src="js/three/lights/DirectionalLight.js"></script>
M
Mr.doob 已提交
115 116 117 118 119
	<script type="text/javascript" src="js/three/lights/PointLight.js"></script>
	<script type="text/javascript" src="js/three/objects/Object3D.js"></script>
	<script type="text/javascript" src="js/three/objects/Particle.js"></script>
	<script type="text/javascript" src="js/three/objects/Line.js"></script>
	<script type="text/javascript" src="js/three/objects/Mesh.js"></script>
M
Mr.doob 已提交
120 121 122 123
	<script type="text/javascript" src="js/three/materials/Material.js"></script>
	<script type="text/javascript" src="js/three/materials/LineBasicMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshBasicMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshLambertMaterial.js"></script>
124
	<script type="text/javascript" src="js/three/materials/MeshPhongMaterial.js"></script>
M
Mr.doob 已提交
125
	<script type="text/javascript" src="js/three/materials/MeshDepthMaterial.js"></script>
126
	<script type="text/javascript" src="js/three/materials/MeshFaceMaterial.js"></script>
M
Mr.doob 已提交
127
	<script type="text/javascript" src="js/three/materials/ParticleBasicMaterial.js"></script>
128
	<script type="text/javascript" src="js/three/materials/ParticleCircleMaterial.js"></script>
M
Mr.doob 已提交
129
	<script type="text/javascript" src="js/three/materials/textures/Texture.js"></script>
M
Mr.doob 已提交
130
	<script type="text/javascript" src="js/three/scenes/Scene.js"></script>
M
Mr.doob 已提交
131
	<script type="text/javascript" src="js/three/renderers/Projector.js"></script>
132
	<script type="text/javascript" src="js/three/renderers/DOMRenderer.js"></script>
M
Mr.doob 已提交
133 134
	<script type="text/javascript" src="js/three/renderers/CanvasRenderer.js"></script>
	<script type="text/javascript" src="js/three/renderers/SVGRenderer.js"></script>
135
	<script type="text/javascript" src="js/three/renderers/WebGLRenderer.js"></script>
M
Mr.doob 已提交
136 137 138
	<script type="text/javascript" src="js/three/renderers/renderables/RenderableFace3.js"></script>
	<script type="text/javascript" src="js/three/renderers/renderables/RenderableFace4.js"></script>
	<script type="text/javascript" src="js/three/renderers/renderables/RenderableParticle.js"></script>
M
Mr.doob 已提交
139 140
	<script type="text/javascript" src="js/three/renderers/renderables/RenderableLine.js"></script>

141

142
### Change Log ###
143

144
2010 11 04 - **r28** (62.802 kb)
145

146
* `Loader` class allows load geometry asynchronously at runtime. ([alteredq](http://github.com/alteredq))
M
Mr.doob 已提交
147
* `MeshPhongMaterial` working with `WebGLRenderer`. ([alteredq](http://github.com/alteredq))
148 149 150 151 152
* Support for *huge* objects. Max 500k polys and counting. ([alteredq](http://github.com/alteredq))
* `Projector.unprojectVector` and `Ray` class to check intersections with faces (based on [mindlapse](https://github.com/mindlapse) work)
* Fixed `CanvasRenderer` and `SVGRenderer` z-sorting (not as jumpy anymore).
* Fixed Orthographic projection (was y-inverted).
* Hmmm.. lib file size starting to get too big...
153

M
Mr.doob 已提交
154

155 156 157 158 159 160 161 162 163
2010 10 28 - **r25** (54.480 kb)

* `WebGLRenderer` now up to date with other renderers! ([alteredq](http://github.com/alteredq))
* .obj to .js python converter ([alteredq](http://github.com/alteredq))
* Blender 2.54 exporter
* Added `MeshFaceMaterial` (multipass per face)
* Reworked `CanvasRenderer` and `SVGRenderer` material handling


M
Mr.doob 已提交
164 165 166 167 168 169 170 171
2010 10 06 - **r18** (44.420 kb)

* Added `PointLight`
* `CanvasRenderer` and `SVGRenderer` basic lighting support (ColorStroke/ColorFill only)
* `Renderer` > `Projector`. `CanvasRenderer`, `SVGRenderer` and `DOMRenderer` do not extend anymore
* Added `computeCentroids` method to `Geometry`


M
Mr.doob 已提交
172
2010 09 17 - **r17** (39.487 kb)
M
Mr.doob 已提交
173 174 175

* Added `Light`, `AmbientLight` and `DirectionalLight` ([philogb](http://github.com/philogb))
* `WebGLRenderer` basic lighting support ([philogb](http://github.com/philogb))
M
Mr.doob 已提交
176
* Memory optimisations
M
Mr.doob 已提交
177 178


179 180 181 182 183 184
2010 08 21 - **r16** (35.592 kb)

* Workaround for Opera bug (clearRect not working with context with negative scale)
* Additional `Matrix4` and `Vector3` methods


185 186 187 188 189 190 191 192 193
2010 07 23 - **r15** (32.440 kb)

* Using new object `UV` instead of `Vector2` where it should be used
* Added `Mesh.flipSided` boolean (false by default)
* `CanvasRenderer` was handling UVs at 1,1 as bitmapWidth, bitmapHeight (instead of bitmapWidth - 1, bitmapHeight - 1)
* `ParticleBitmapMaterial.offset` added
* Fixed gap when rendering `Face4` with `MeshBitmapUVMappingMaterial`


M
Mr.doob 已提交
194
2010 07 17 - **r14** (32.144 kb)
195 196 197 198 199 200 201 202 203 204 205 206 207

* Refactored `CanvasRenderer` (more duplicated code, but easier to handle)
* `Face4` now supports `MeshBitmapUVMappingMaterial`
* Changed order of `*StrokeMaterial` parameters. Now it's `color`, `opacity`, `lineWidth`.
* `BitmapUVMappingMaterial` > `MeshBitmapUVMappingMaterial`
* `ColorFillMaterial` > `MeshColorFillMaterial`
* `ColorStrokeMaterial` > `MeshColorStrokeMaterial`
* `FaceColorFillMaterial` > `MeshFaceColorFillMaterial`
* `FaceColorStrokeMaterial` > `MeshFaceColorStrokeMaterial`
* `ColorStrokeMaterial` > `LineColorMaterial`
* `Rectangle.instersects` returned false with rectangles with 0px witdh or height


208
2010 07 12 - **r13** (29.492 kb)
209 210 211 212

* Added `ParticleCircleMaterial` and `ParticleBitmapMaterial`
* `Particle` now use `ParticleCircleMaterial` instead of `ColorFillMaterial`
* `Particle.size` > `Particle.scale.x` and `Particle.scale.y`
213
* `Particle.rotation.z` for rotating the particle
214 215 216
* `SVGRenderer` currently out of sync


217 218
2010 07 07 - **r12** (28.494 kb)

219 220 221
* First version of the `WebGLRenderer` (`ColorFillMaterial` and `FaceColorFillMaterial` by now)
* `Matrix4.lookAt` fix (`CanvasRenderer` and `SVGRenderer` now handle the -Y)
* `Color` now using 0-1 floats instead of 0-255 integers
222 223


M
Mr.doob 已提交
224 225 226
2010 07 03 - **r11** (23.541 kb)

* Blender 2.5 exporter (utils/export_threejs.py) now exports UV and normals (Thx [kikko](http://github.com/kikko))
227 228
* `Scene.add` > `Scene.addObject`
* Enabled `Scene.removeObject`
M
Mr.doob 已提交
229 230


231
2010 06 22 - **r10** (23.959 kb)
232 233

* Changed Camera system. (Thx [Paul Brunt](http://github.com/supereggbert))
234
* `Object3D.overdraw = true` to enable CanvasRenderer screen space point expansion hack.
235 236


237
2010 06 20 - **r9** (23.753 kb)
M
Mr.doob 已提交
238

239
* JSLinted.
240
* `autoClear` property for renderers.
M
Mr.doob 已提交
241
* Removed SVG rgba() workaround for WebKit. (WebKit now supports it)
242
* Fixed matrix bug. (transformed objects outside the x axis would get infinitely tall :S)
M
Mr.doob 已提交
243 244 245


2010 06 06 - **r8** (23.496 kb)
246

247 248 249
* Moved UVs to `Geometry`.
* `CanvasRenderer` expands screen space points (workaround for antialias gaps).
* `CanvasRenderer` supports `BitmapUVMappingMaterial`.
250 251


M
Mr.doob 已提交
252
2010 06 05 - **r7** (22.387 kb)
M
Mr.doob 已提交
253

254 255
* Added Line Object.
* Workaround for WebKit not supporting rgba() in SVG yet.
256
* No need to call updateMatrix(). Use .autoUpdateMatrix = false if needed. (Thx [Gregory Athons](http://github.com/gregmax17)).
M
Mr.doob 已提交
257 258


259 260
2010 05 17 - **r6** (21.003 kb)

261 262
* 2d clipping on `CanvasRenderer` and `SVGRenderer`
* `clearRect` optimisations on `CanvasRenderer`
263 264


M
Mr.doob 已提交
265
2010 05 16 - **r5** (19.026 kb)
M
Mr.doob 已提交
266 267

* Removed Class.js dependency
268 269 270 271 272
* Added `THREE` namespace
* `Camera.x` -> `Camera.position.x`
* `Camera.target.x` > `Camera.target.position.x`
* `ColorMaterial` > `ColorFillMaterial`
* `FaceColorMaterial` > `FaceColorFillMaterial`
M
Mr.doob 已提交
273
* Materials are now multipass (use array)
274 275
* Added `ColorStrokeMaterial` and `FaceColorStrokeMaterial`
* `geometry.faces.a` are now indexes instead of references
M
Mr.doob 已提交
276 277


278 279
2010 04 26 - **r4** (16.274 kb)

280 281
* `SVGRenderer` Particle rendering
* `CanvasRenderer` uses `context.setTransform` to avoid extra calculations
282 283


M
Mr.doob 已提交
284
2010 04 24 - **r3** (16.392 kb)
M
Mr.doob 已提交
285 286

* Fixed incorrect rotation matrix transforms
287
* Added `Plane` and `Cube` primitives
M
Mr.doob 已提交
288 289 290


2010 04 24 - **r2** (15.724 kb)
M
Mr.doob 已提交
291

292
* Improved `Color` handling
M
Mr.doob 已提交
293

M
Mr.doob 已提交
294 295

2010 04 24 - **r1** (15.25 kb)
M
Mr.doob 已提交
296 297

* First alpha release