Comparing version 2.0.0-alpha26 to 2.0.0-alpha27
{ | ||
"name": "sigma", | ||
"version": "2.0.0-alpha26", | ||
"version": "2.0.0-alpha27", | ||
"description": "A JavaScript library dedicated to graph drawing.", | ||
@@ -5,0 +5,0 @@ "homepage": "http://sigmajs.org", |
@@ -37,3 +37,4 @@ "use strict"; | ||
var POINTS = 3, | ||
ATTRIBUTES = 10; | ||
ATTRIBUTES = 10, | ||
STRIDE = POINTS * ATTRIBUTES; | ||
@@ -103,4 +104,4 @@ var ArrowProgram = | ||
if (sourceData.hidden || targetData.hidden || data.hidden) { | ||
for (var l = i + POINTS * ATTRIBUTES; i < l; i++) { | ||
this.array[i] = 0; | ||
for (var _i = offset * STRIDE, l = _i + STRIDE; _i < l; _i++) { | ||
this.array[_i] = 0; | ||
} | ||
@@ -107,0 +108,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
906676
3874