mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-08-02 00:59:41 -04:00
Update prepro.js to version that can evaluate whole expressions, and fix a newly introduced issue with it.
This commit is contained in:
parent
0060f629ae
commit
9d7ec13724
23 changed files with 93 additions and 93 deletions
src/path
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue