Skip to content

Commit

Permalink
Removed a debug command
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Dec 1, 2011
1 parent 90295e9 commit ecf813b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/demo.js
Expand Up @@ -13,7 +13,6 @@ window.addEventListener( 'load', function ( ) {
map.generate( [ 0, 0 ], [ width, height ], function ( point, value ) {
var idx = ( point[ 1 ] * width + point[ 0 ] ) * 4;
var clr = Math.floor( ( value + 1 ) / 2 * 255 );
console.log(clr);

buffer.data[ idx + 0 ] = clr;
buffer.data[ idx + 1 ] = clr;
Expand Down

0 comments on commit ecf813b

Please sign in to comment.