Browse Source

Nickname consistency.

Mr.doob 13 years ago
parent
commit
6bdaf52ae9
53 changed files with 53 additions and 53 deletions
  1. 1 1
      src/Three.js
  2. 1 1
      src/cameras/Camera.js
  3. 1 1
      src/cameras/PerspectiveCamera.js
  4. 1 1
      src/core/Color.js
  5. 1 1
      src/core/Face3.js
  6. 1 1
      src/core/Face4.js
  7. 1 1
      src/core/Geometry.js
  8. 1 1
      src/core/Matrix4.js
  9. 1 1
      src/core/Object3D.js
  10. 1 1
      src/core/Projector.js
  11. 1 1
      src/core/Ray.js
  12. 1 1
      src/core/Rectangle.js
  13. 1 1
      src/core/UV.js
  14. 1 1
      src/core/Vector2.js
  15. 1 1
      src/core/Vector3.js
  16. 1 1
      src/core/Vertex.js
  17. 1 1
      src/extras/ShaderUtils.js
  18. 1 1
      src/extras/geometries/CubeGeometry.js
  19. 1 1
      src/extras/geometries/CylinderGeometry.js
  20. 1 1
      src/extras/geometries/PlaneGeometry.js
  21. 1 1
      src/extras/geometries/SphereGeometry.js
  22. 1 1
      src/extras/geometries/TorusGeometry.js
  23. 1 1
      src/extras/helpers/AxisHelper.js
  24. 1 1
      src/lights/AmbientLight.js
  25. 1 1
      src/lights/DirectionalLight.js
  26. 1 1
      src/lights/Light.js
  27. 1 1
      src/lights/PointLight.js
  28. 1 1
      src/materials/LineBasicMaterial.js
  29. 1 1
      src/materials/Material.js
  30. 1 1
      src/materials/MeshBasicMaterial.js
  31. 1 1
      src/materials/MeshDepthMaterial.js
  32. 1 1
      src/materials/MeshFaceMaterial.js
  33. 1 1
      src/materials/MeshLambertMaterial.js
  34. 1 1
      src/materials/MeshNormalMaterial.js
  35. 1 1
      src/materials/MeshPhongMaterial.js
  36. 1 1
      src/materials/ParticleBasicMaterial.js
  37. 1 1
      src/materials/ParticleCanvasMaterial.js
  38. 1 1
      src/materials/ParticleDOMMaterial.js
  39. 1 1
      src/objects/LOD.js
  40. 1 1
      src/objects/Line.js
  41. 1 1
      src/objects/Mesh.js
  42. 1 1
      src/objects/Particle.js
  43. 1 1
      src/renderers/CanvasRenderer.js
  44. 1 1
      src/renderers/renderables/RenderableFace3.js
  45. 1 1
      src/renderers/renderables/RenderableFace4.js
  46. 1 1
      src/renderers/renderables/RenderableLine.js
  47. 1 1
      src/renderers/renderables/RenderableObject.js
  48. 1 1
      src/renderers/renderables/RenderableParticle.js
  49. 1 1
      src/renderers/renderables/RenderableVertex.js
  50. 1 1
      src/scenes/Fog.js
  51. 1 1
      src/scenes/FogExp2.js
  52. 1 1
      src/scenes/Scene.js
  53. 1 1
      src/textures/Texture.js

+ 1 - 1
src/Three.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 var THREE = THREE || { REVISION: '50' };

+ 1 - 1
src/cameras/Camera.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author mikael emtinger / http://gomo.se/
  */
 

+ 1 - 1
src/cameras/PerspectiveCamera.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author greggman / http://games.greggman.com/
  * @author zz85 / http://www.lab4games.net/zz85/blog
  */

+ 1 - 1
src/core/Color.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Color = function ( hex ) {

+ 1 - 1
src/core/Face3.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/core/Face4.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/core/Geometry.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author kile / http://kile.stravaganza.org/
  * @author alteredq / http://alteredqualia.com/
  * @author mikael emtinger / http://gomo.se/

+ 1 - 1
src/core/Matrix4.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author supereggbert / http://www.paulbrunt.co.uk/
  * @author philogb / http://blog.thejit.org/
  * @author jordi_ros / http://plattsoft.com

+ 1 - 1
src/core/Object3D.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author mikael emtinger / http://gomo.se/
  * @author alteredq / http://alteredqualia.com/
  */

+ 1 - 1
src/core/Projector.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author supereggbert / http://www.paulbrunt.co.uk/
  * @author julianwa / https://github.com/julianwa
  */

+ 1 - 1
src/core/Ray.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Ray = function ( origin, direction, near, far ) {

+ 1 - 1
src/core/Rectangle.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Rectangle = function () {

+ 1 - 1
src/core/UV.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.UV = function ( u, v ) {

+ 1 - 1
src/core/Vector2.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author philogb / http://blog.thejit.org/
  * @author egraether / http://egraether.com/
  * @author zz85 / http://www.lab4games.net/zz85/blog

+ 1 - 1
src/core/Vector3.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author kile / http://kile.stravaganza.org/
  * @author philogb / http://blog.thejit.org/
  * @author mikael emtinger / http://gomo.se/

+ 1 - 1
src/core/Vertex.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Vertex = function ( v ) {

+ 1 - 1
src/extras/ShaderUtils.js

@@ -1,6 +1,6 @@
 /**
  * @author alteredq / http://alteredqualia.com/
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  *
  * ShaderUtils currently contains:
  *

+ 1 - 1
src/extras/geometries/CubeGeometry.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * based on http://papervision3d.googlecode.com/svn/trunk/as3/trunk/src/org/papervision3d/objects/primitives/Cube.as
  */
 

+ 1 - 1
src/extras/geometries/CylinderGeometry.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.CylinderGeometry = function ( radiusTop, radiusBottom, height, segmentsRadius, segmentsHeight, openEnded ) {

+ 1 - 1
src/extras/geometries/PlaneGeometry.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * based on http://papervision3d.googlecode.com/svn/trunk/as3/trunk/src/org/papervision3d/objects/primitives/Plane.as
  */
 

+ 1 - 1
src/extras/geometries/SphereGeometry.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.SphereGeometry = function ( radius, segmentsWidth, segmentsHeight, phiStart, phiLength, thetaStart, thetaLength ) {

+ 1 - 1
src/extras/geometries/TorusGeometry.js

@@ -1,6 +1,6 @@
 /**
  * @author oosmoxiecode
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * based on http://code.google.com/p/away3d/source/browse/trunk/fp10/Away3DLite/src/away3dlite/primitives/Torus.as?r=2888
  */
 

+ 1 - 1
src/extras/helpers/AxisHelper.js

@@ -1,6 +1,6 @@
 /**
  * @author sroucheray / http://sroucheray.org/
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.AxisHelper = function () {

+ 1 - 1
src/lights/AmbientLight.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.AmbientLight = function ( hex ) {

+ 1 - 1
src/lights/DirectionalLight.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/lights/Light.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
  

+ 1 - 1
src/lights/PointLight.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.PointLight = function ( hex, intensity, distance ) {

+ 1 - 1
src/materials/LineBasicMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/Material.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/materials/MeshBasicMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/MeshDepthMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/MeshFaceMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.MeshFaceMaterial = function () {};

+ 1 - 1
src/materials/MeshLambertMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/MeshNormalMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  *
  * parameters = {
  *  opacity: <float>,

+ 1 - 1
src/materials/MeshPhongMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/ParticleBasicMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  *
  * parameters = {

+ 1 - 1
src/materials/ParticleCanvasMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  *
  * parameters = {
  *  color: <hex>,

+ 1 - 1
src/materials/ParticleDOMMaterial.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.ParticleDOMMaterial = function ( domElement ) {

+ 1 - 1
src/objects/LOD.js

@@ -1,7 +1,7 @@
 /**
  * @author mikael emtinger / http://gomo.se/
  * @author alteredq / http://alteredqualia.com/
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.LOD = function () {

+ 1 - 1
src/objects/Line.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Line = function ( geometry, material, type ) {

+ 1 - 1
src/objects/Mesh.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  * @author mikael emtinger / http://gomo.se/
  */

+ 1 - 1
src/objects/Particle.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Particle = function ( material ) {

+ 1 - 1
src/renderers/CanvasRenderer.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.CanvasRenderer = function ( parameters ) {

+ 1 - 1
src/renderers/renderables/RenderableFace3.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableFace3 = function () {

+ 1 - 1
src/renderers/renderables/RenderableFace4.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableFace4 = function () {

+ 1 - 1
src/renderers/renderables/RenderableLine.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableLine = function () {

+ 1 - 1
src/renderers/renderables/RenderableObject.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableObject = function () {

+ 1 - 1
src/renderers/renderables/RenderableParticle.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableParticle = function () {

+ 1 - 1
src/renderers/renderables/RenderableVertex.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.RenderableVertex = function () {

+ 1 - 1
src/scenes/Fog.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/scenes/FogExp2.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  */
 

+ 1 - 1
src/scenes/Scene.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  */
 
 THREE.Scene = function () {

+ 1 - 1
src/textures/Texture.js

@@ -1,5 +1,5 @@
 /**
- * @author mr.doob / http://mrdoob.com/
+ * @author mrdoob / http://mrdoob.com/
  * @author alteredq / http://alteredqualia.com/
  * @author szimek / https://github.com/szimek/
  */