README.md 11.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

10
The engine can render using <canvas> and <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

M
Mr.doob 已提交
18
[![geometry_earth](http://github.com/mrdoob/three.js/raw/master/assets/examples/07_earth.png)](http://mrdoob.com/projects/three.js/examples/geometry_earth.html)
M
Mr.doob 已提交
19
[![geometry_terrain](http://github.com/mrdoob/three.js/raw/master/assets/examples/06_terrain.png)](http://mrdoob.com/projects/three.js/examples/geometry_terrain.html)
M
Mr.doob 已提交
20 21 22 23 24 25
[![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)
M
Mr.doob 已提交
26

27 28
### Featured projects ###

29
[![Or so they say...](http://github.com/mrdoob/three.js/raw/master/assets/projects/07_orsotheysay.png)](http://xplsv.com/prods/demos/online/xplsv_orsotheysay/)
M
Mr.doob 已提交
30 31
[![Rat](http://github.com/mrdoob/three.js/raw/master/assets/projects/06_rat.png)](http://tech.lab212.org/2010/07/export-textured-models-from-blender2-5-to-three-js/)
[![Failure](http://github.com/mrdoob/three.js/raw/master/assets/projects/05_failure.png)](http://www.is-real.net/experiments/three/failure/)
M
Mr.doob 已提交
32
[![Space Cannon 3D](http://github.com/mrdoob/three.js/raw/master/assets/projects/02_spacecannon.png)](http://labs.brian-stoner.com/spacecannon/)
M
Mr.doob 已提交
33
[![Alocasia](http://github.com/mrdoob/three.js/raw/master/assets/projects/04_alocasia.png)](http://arithmetric.com/projects/alocasia/)
M
Mr.doob 已提交
34 35
[![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/)
M
Mr.doob 已提交
36
[![spikeball](http://github.com/mrdoob/three.js/raw/master/assets/projects/03_spikeball.png)](http://kile.stravaganza.org/lab/js/spikeball/)
M
Mr.doob 已提交
37

M
Mr.doob 已提交
38
### Usage ###
M
Mr.doob 已提交
39

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

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

M
Mr.doob 已提交
44
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 已提交
45 46 47 48

	<script type="text/javascript">

		var camera, scene, renderer;
49

M
Mr.doob 已提交
50
		init();
51
		setInterval( loop, 1000 / 60 );
M
Mr.doob 已提交
52

M
Mr.doob 已提交
53
		function init() {
M
Mr.doob 已提交
54

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

M
Mr.doob 已提交
58
			scene = new THREE.Scene();
M
Mr.doob 已提交
59

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

M
Mr.doob 已提交
62
				var particle = new THREE.Particle( new THREE.ParticleCircleMaterial( Math.random() * 0x808008 + 0x808080, 1 ) );
M
Mr.doob 已提交
63 64 65
				particle.position.x = Math.random() * 2000 - 1000;
				particle.position.y = Math.random() * 2000 - 1000;
				particle.position.z = Math.random() * 2000 - 1000;
M
Mr.doob 已提交
66
				particle.scale.x = particle.scale.y = Math.random() * 10 + 5;
M
Mr.doob 已提交
67
				scene.addObject( particle );
M
Mr.doob 已提交
68

M
Mr.doob 已提交
69 70
			}

M
Mr.doob 已提交
71 72 73
			renderer = new THREE.CanvasRenderer();
			renderer.setSize( window.innerWidth, window.innerHeight );

74
			document.body.appendChild( renderer.domElement );
M
Mr.doob 已提交
75

76 77
		}

M
Mr.doob 已提交
78
		function loop() {
M
Mr.doob 已提交
79

80
			renderer.render( scene, camera );
M
Mr.doob 已提交
81

M
Mr.doob 已提交
82
		}
M
Mr.doob 已提交
83

M
Mr.doob 已提交
84
	</script>
85

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

M
Mr.doob 已提交
88 89 90 91
	<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>
92
	<script type="text/javascript" src="js/three/core/Vector4.js"></script>
M
Mr.doob 已提交
93
	<script type="text/javascript" src="js/three/core/Rectangle.js"></script>
M
Mr.doob 已提交
94 95 96 97
	<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>
98
	<script type="text/javascript" src="js/three/core/UV.js"></script>
M
Mr.doob 已提交
99 100 101
	<script type="text/javascript" src="js/three/core/Geometry.js"></script>
	<script type="text/javascript" src="js/three/cameras/Camera.js"></script>
	<script type="text/javascript" src="js/three/objects/Object3D.js"></script>
102
	<script type="text/javascript" src="js/three/objects/Line.js"></script>
M
Mr.doob 已提交
103 104
	<script type="text/javascript" src="js/three/objects/Mesh.js"></script>
	<script type="text/javascript" src="js/three/objects/Particle.js"></script>
105 106 107 108 109 110
	<script type="text/javascript" src="js/three/materials/LineColorMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshBitmapUVMappingMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshColorFillMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshColorStrokeMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshFaceColorFillMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/MeshFaceColorStrokeMaterial.js"></script>
111 112
	<script type="text/javascript" src="js/three/materials/ParticleBitmapMaterial.js"></script>
	<script type="text/javascript" src="js/three/materials/ParticleCircleMaterial.js"></script>
M
Mr.doob 已提交
113 114 115 116
	<script type="text/javascript" src="js/three/scenes/Scene.js"></script>
	<script type="text/javascript" src="js/three/renderers/Renderer.js"></script>
	<script type="text/javascript" src="js/three/renderers/CanvasRenderer.js"></script>
	<script type="text/javascript" src="js/three/renderers/SVGRenderer.js"></script>
117
	<script type="text/javascript" src="js/three/renderers/WebGLRenderer.js"></script>
M
Mr.doob 已提交
118 119 120
	<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 已提交
121 122
	<script type="text/javascript" src="js/three/renderers/renderables/RenderableLine.js"></script>

123

124 125 126 127 128 129 130
### Contributors ###

Thanks to the power of the internets (and github <3) these people have kindly helped out with the project.

[Paul Brunt](http://github.com/supereggbert), [Fernando Serrano](http://kile.stravaganza.org/), [kikko](http://github.com/kikko).


M
Mr.doob 已提交
131
### Change Log ###
M
Mr.doob 已提交
132

133 134 135 136 137 138 139 140 141
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 已提交
142
2010 07 17 - **r14** (32.144 kb)
143 144 145 146 147 148 149 150 151 152 153 154 155

* 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


156
2010 07 12 - **r13** (29.492 kb)
157 158 159 160

* Added `ParticleCircleMaterial` and `ParticleBitmapMaterial`
* `Particle` now use `ParticleCircleMaterial` instead of `ColorFillMaterial`
* `Particle.size` > `Particle.scale.x` and `Particle.scale.y`
161
* `Particle.rotation.z` for rotating the particle
162 163 164
* `SVGRenderer` currently out of sync


165 166
2010 07 07 - **r12** (28.494 kb)

167 168 169
* 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
170 171


M
Mr.doob 已提交
172 173 174
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))
175 176
* `Scene.add` > `Scene.addObject`
* Enabled `Scene.removeObject`
M
Mr.doob 已提交
177 178


179
2010 06 22 - **r10** (23.959 kb)
180 181

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


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

187
* JSLinted.
188
* `autoClear` property for renderers.
M
Mr.doob 已提交
189
* Removed SVG rgba() workaround for WebKit. (WebKit now supports it)
190
* Fixed matrix bug. (transformed objects outside the x axis would get infinitely tall :S)
M
Mr.doob 已提交
191 192 193


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

195 196 197
* Moved UVs to `Geometry`.
* `CanvasRenderer` expands screen space points (workaround for antialias gaps).
* `CanvasRenderer` supports `BitmapUVMappingMaterial`.
198 199


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

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


207 208
2010 05 17 - **r6** (21.003 kb)

209 210
* 2d clipping on `CanvasRenderer` and `SVGRenderer`
* `clearRect` optimisations on `CanvasRenderer`
211 212


M
Mr.doob 已提交
213
2010 05 16 - **r5** (19.026 kb)
M
Mr.doob 已提交
214 215

* Removed Class.js dependency
216 217 218 219 220
* Added `THREE` namespace
* `Camera.x` -> `Camera.position.x`
* `Camera.target.x` > `Camera.target.position.x`
* `ColorMaterial` > `ColorFillMaterial`
* `FaceColorMaterial` > `FaceColorFillMaterial`
M
Mr.doob 已提交
221
* Materials are now multipass (use array)
222 223
* Added `ColorStrokeMaterial` and `FaceColorStrokeMaterial`
* `geometry.faces.a` are now indexes instead of references
M
Mr.doob 已提交
224 225


226 227
2010 04 26 - **r4** (16.274 kb)

228 229
* `SVGRenderer` Particle rendering
* `CanvasRenderer` uses `context.setTransform` to avoid extra calculations
230 231


M
Mr.doob 已提交
232
2010 04 24 - **r3** (16.392 kb)
M
Mr.doob 已提交
233 234

* Fixed incorrect rotation matrix transforms
235
* Added `Plane` and `Cube` primitives
M
Mr.doob 已提交
236 237 238


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

240
* Improved `Color` handling
M
Mr.doob 已提交
241

M
Mr.doob 已提交
242 243

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

* First alpha release