From f2d792435c114ad2ab743a909dc5810dcc583cfa Mon Sep 17 00:00:00 2001 From: jos Date: Fri, 6 Jun 2014 09:19:01 +0200 Subject: [PATCH] Removed a left over console.log --- src/graph3d/graph3d.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/graph3d/graph3d.js b/src/graph3d/graph3d.js index 6a322d96..a202041d 100644 --- a/src/graph3d/graph3d.js +++ b/src/graph3d/graph3d.js @@ -1763,7 +1763,6 @@ Graph3d.prototype._redrawDataBar = function() { // calculate the distance from the point at the bottom to the camera var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); - console.log(this.dataPoints[i], this.showPerspective, transBottom.length) this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; } @@ -1776,7 +1775,6 @@ Graph3d.prototype._redrawDataBar = function() { // draw the datapoints as bars var xWidth = this.xBarWidth / 2; var yWidth = this.yBarWidth / 2; - var dotSize = this.frame.clientWidth * 0.02; // px for (i = 0; i < this.dataPoints.length; i++) { var point = this.dataPoints[i];