Ver código fonte

Added working link back to geometry birds example.

Mr.doob 7 anos atrás
pai
commit
48b476bd18
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      examples/canvas_geometry_birds.html

+ 3 - 1
examples/canvas_geometry_birds.html

@@ -76,8 +76,10 @@
 
 			Bird.prototype = Object.create( THREE.Geometry.prototype );
 			Bird.prototype.constructor = Bird;
+			
+			// Based on https://www.openprocessing.org/sketch/6910
 
-			var Boid = function() {
+			var Boid = function () {
 
 				var vector = new THREE.Vector3(),
 				_acceleration, _width = 500, _height = 500, _depth = 200, _goal, _neighborhoodRadius = 100,