Update prepro.js to version that can evaluate whole expressions, and fix a newly introduced issue with it.

This commit is contained in:
Jürg Lehni 2014-05-14 15:14:03 +02:00
parent 0060f629ae
commit 9d7ec13724
23 changed files with 93 additions and 93 deletions
src/path

View file

@ -77,8 +77,8 @@ var PathItem = Item.extend(/** @lends PathItem# */{
length1 = curves1.length,
length2 = path ? curves2.length : length1,
values2 = [],
MIN = /*#=*/ Numerical.EPSILON,
MAX = 1 - /*#=*/ Numerical.EPSILON;
MIN = /*#=*/Numerical.EPSILON,
MAX = 1 - /*#=*/Numerical.EPSILON;
for (var i = 0; i < length2; i++)
values2[i] = curves2[i].getValues(matrix2);
for (var i = 0; i < length1; i++) {