diff --git a/README.md b/README.md index 013d745817945f6b7b2d9d3fae2330993861856f..9b0c5928fa3c6b3ff4d7ed8d4454bc37a0eeb9e9 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Other similar projects: [pre3d](http://deanm.github.com/pre3d/), [pvjs](http://c ### Featured projects ### +[![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/) [![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/) [![Space Cannon 3D](http://github.com/mrdoob/three.js/raw/master/assets/projects/02_spacecannon.png)](http://labs.brian-stoner.com/spacecannon/) @@ -36,9 +37,9 @@ Other similar projects: [pre3d](http://deanm.github.com/pre3d/), [pvjs](http://c ### Usage ### -Download the [minified library](http://github.com/mrdoob/three.js/raw/master/build/three.js) and include it in your html. +Download the [minified library](http://github.com/mrdoob/three.js/raw/master/build/Three.js) and include it in your html. - + This code creates a camera, then creates a scene object, adds a bunch of random particles in it, creates a <canvas> renderer and adds its viewport in the document.body element. diff --git a/assets/projects/07_orsotheysay.png b/assets/projects/07_orsotheysay.png new file mode 100644 index 0000000000000000000000000000000000000000..af9153b354fb666c711af4f25ae7d0d312f3412a Binary files /dev/null and b/assets/projects/07_orsotheysay.png differ diff --git a/build/three.js b/build/Three.js similarity index 100% rename from build/three.js rename to build/Three.js diff --git a/build/three_debug.js b/build/ThreeDebug.js similarity index 100% rename from build/three_debug.js rename to build/ThreeDebug.js diff --git a/utils/builder.py b/utils/builder.py index 2b472dba10748e03ea9ae748e5b175e6b7dd1274..fe4217df6c86ff1a255abc8f4b36911273c306a8 100644 --- a/utils/builder.py +++ b/utils/builder.py @@ -54,12 +54,12 @@ tmp_file.close() # YUICOMPRESSOR -os.system("java -jar yuicompressor-2.4.2.jar temp.js -o ../build/three.js --charset utf-8 -v") +os.system("java -jar yuicompressor-2.4.2.jar temp.js -o ../build/Three.js --charset utf-8 -v") os.unlink("temp.js") # HEADER -output = '../build/three.js' +output = '../build/Three.js' string = "// three.js r" + str(rev) + " - http://github.com/mrdoob/three.js\n" src_file = open(output,'r') diff --git a/utils/builder_debug.py b/utils/builder_debug.py index 31ca396784a86f5227918d0aaf63f26ee2ce3b02..e61cd21aab27a3d058f1332a14498517f68b8054 100644 --- a/utils/builder_debug.py +++ b/utils/builder_debug.py @@ -64,12 +64,12 @@ tmp_file.close() # YUICOMPRESSOR -os.system("java -jar yuicompressor-2.4.2.jar temp.js -o ../build/three_debug.js --charset utf-8 -v") +os.system("java -jar yuicompressor-2.4.2.jar temp.js -o ../build/ThreeDebug.js --charset utf-8 -v") os.unlink("temp.js"); # HEADER -output = '../build/three_debug.js' +output = '../build/ThreeDebug.js' string = "// three.js r" + str(rev) + " - http://github.com/mrdoob/three.js\n" src_file = open(output,'r')