Skip to content

Commit 32b581f

Browse files
committed
r47
1 parent 3c618a8 commit 32b581f

12 files changed

+93
-57
lines changed

README.md

+37-2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ More? [#three.js on irc.freenode.net](http://webchat.freenode.net/?channels=thre
6363

6464
### Featured projects ###
6565

66+
<a href="http://dl.dropbox.com/u/6213850/WebGL/nyanCat/nyan.html"><img src="http://mrdoob.github.com/three.js/assets/projects/23_nyan.png" width="104" height="78" alt="Nyan Cat"></a>
67+
<a href="http://idflood.github.com/ThreeNodes.js/public/index.html"><img src="http://mrdoob.github.com/three.js/assets/projects/22_threenodes.png" width="104" height="78" alt="ThreeNodes"></a>
68+
<a href="http://www.adidas.com/football/uk/pages/f50/"><img src="http://mrdoob.github.com/three.js/assets/projects/21_f50.png" width="104" height="78" alt="f60"></a>
6669
<a href="http://lights.elliegoulding.com/"><img src="http://mrdoob.github.com/three.js/assets/projects/20_lights.png" width="104" height="78" alt="Lights"></a>
6770
<a href="http://inear.se/beanstalk/"><img src="http://mrdoob.github.com/three.js/assets/projects/19_beanstalk.png" width="104" height="78" alt="Infinite beanstalk"></a>
6871
<a href="http://superfad.com/missioncontrol/"><img src="http://mrdoob.github.com/three.js/assets/projects/18_missioncontrol.png" width="104" height="78" alt="Mission Control"></a>
@@ -72,7 +75,6 @@ More? [#three.js on irc.freenode.net](http://webchat.freenode.net/?channels=thre
7275
<a href="http://plumegraph.org/"><img src="http://mrdoob.github.com/three.js/assets/projects/14_plumegraph.png" width="104" height="78" alt="Plumegraph"></a>
7376
<a href="http://helloracer.com/webgl/"><img src="http://mrdoob.github.com/three.js/assets/projects/13_helloracer.png" width="104" height="78" alt="HelloRacer"></a>
7477
<a href="http://www.omiod.com/games/fastkat.php"><img src="http://mrdoob.github.com/three.js/assets/projects/12_fastkat.png" width="104" height="78" alt="FastKat"></a>
75-
<a href="http://antimatter15.com/wp/2010/11/digital-sculpting-with-three-js/"><img src="http://mrdoob.github.com/three.js/assets/projects/11_sculpt.png" width="104" height="78" alt="Sculpt"></a>
7678
<a href="http://mrdoob.com/projects/voxels/"><img src="http://mrdoob.github.com/three.js/assets/projects/10_voxels.png" width="104" height="78" alt="Voxels"></a>
7779
<a href="http://thewildernessdowntown.com/"><img src="http://mrdoob.github.com/three.js/assets/projects/09_arcadefire.png" width="104" height="78" alt="The Wilderness Downtown"></a>
7880
<a href="http://xplsv.com/prods/demos/xplsv_orsotheysay/"><img src="http://mrdoob.github.com/three.js/assets/projects/07_orsotheysay.png" width="104" height="78" alt="Or so they say..."></a>
@@ -121,7 +123,7 @@ This code creates a camera, then creates a scene, adds a cube on it, creates a &
121123
122124
function animate() {
123125
124-
// note: three.js enables requestAnimationFrame()
126+
// note: three.js includes requestAnimationFrame shim
125127
requestAnimationFrame( animate );
126128
render();
127129
@@ -141,6 +143,39 @@ This code creates a camera, then creates a scene, adds a cube on it, creates a &
141143

142144
### Change Log ###
143145

146+
147+
2012 01 14 - **r47** (378,169 KB, gzip: 96,015 KB)
148+
149+
* Resurrected lens flares as custom `WebGLRenderer` plugin. ([alteredq](http://github.com/alteredq))
150+
* Fixed typos in `Matrix4`'s `transpose()` and `getInverse()`. ([ekitson](http://github.com/ekitson))
151+
* "Pluginized" Sprites and ShadowMaps. ([alteredq](http://github.com/alteredq))
152+
* Added `Frustrum` class. ([alteredq](http://github.com/alteredq))
153+
* `ColladaLoader` improvements. ([ekitson](http://github.com/ekitson), [jterrace](http://github.com/jterrace), [mrdoob](http://github.com/mrdoob) and [alteredq](http://github.com/alteredq))
154+
* Lights in a hierarchy are now supported when using `WebGLRenderer`. ([alteredq](http://github.com/alteredq))
155+
* Included requestAnimationFrame shim in the lib. ([mrdoob](http://github.com/mrdoob))
156+
* Started documentation effort in `/doc` (using sphinx). ([jterrace](http://github.com/jterrace))
157+
* Changed default shader precission to `mediump`. ([mrdoob](http://github.com/mrdoob))
158+
* Added support for the format [OpenCTM](http://openctm.sourceforge.net/). ([alteredq](http://github.com/alteredq))
159+
* Added `BufferGeometry` for direct rendering from typed arrays. ([alteredq](http://github.com/alteredq))
160+
* Extended `Texture` class with `format` and `type` parameters. ([alteredq](http://github.com/alteredq))
161+
* Autoscale texture to max size of WebGL hardware. ([greggman](http://github.com/greggman) and [alteredq](http://github.com/alteredq))
162+
* Improved `WebGLRenderer`'s Shadow Map code. ([alteredq](http://github.com/alteredq))
163+
* Checking for `xhr.overrideMimeType` before using it (fixing IE support). ([mrdoob](http://github.com/mrdoob) and [alteredq](http://github.com/alteredq))
164+
* Improved ATI and ANGLE support in across `WebGLRenderer` shaders. ([alteredq](http://github.com/alteredq))
165+
* Added `generateMipmaps` property to `Texture` and `RenderTarget`. ([alteredq](http://github.com/alteredq))
166+
* `Frustum` properly handling children with scaled parents. ([avinoamr](http://github.com/avinoamr))
167+
* Fixed `Ray` when dealing with big polygons. ([WestLangley](http://github.com/WestLangley))
168+
* Fixed `WebGLRenderer` bug where depth buffer was not cleared. ([ekitson](http://github.com/ekitson))
169+
* Added `CameraHelper` objects for visualising both Perspective and Orthographic cameras. ([alteredq](http://github.com/alteredq))
170+
* Improvements to `Path`. ([zz85](http://github.com/zz85))
171+
* Improvements to Postprocessing stack. ([alteredq](http://github.com/alteredq))
172+
* Added shadows for `DirectionalLight`s. ([alteredq](http://github.com/alteredq))
173+
* Added `Gyroscope` object. ([alteredq](http://github.com/alteredq))
174+
* Added `alpha` and `premultipliedAlpha` parameters to `WebGLRenderer`. ([mrdoob](http://github.com/mrdoob))
175+
* `Ray` properly handling children with scaled parents. ([mrdoob](http://github.com/mrdoob))
176+
* Renamed `Axes` object to `AxisHelper`. ([mrdoob](http://github.com/mrdoob))
177+
178+
144179
2011 11 17 - **r46** (343.383 KB, gzip: 87.468 KB)
145180

146181
* Added reflections to Normal Mapping. ([alteredq](http://github.com/alteredq))

REVISION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
47dev
1+
47

0 commit comments

Comments
 (0)