Browse Source

Removed a left over console.log

css_transitions
jos 10 years ago
parent
commit
f2d792435c
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      src/graph3d/graph3d.js

+ 0
- 2
src/graph3d/graph3d.js View File

@ -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];

Loading…
Cancel
Save