Prebuilt module for commit cecd95e039

This commit is contained in:
Paper.js Bot 2016-08-07 19:38:43 +00:00
parent f3b420e3b3
commit 64f46c43c8
5 changed files with 28 additions and 22 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Aug 7 15:58:54 2016 +0200
* Date: Sun Aug 7 21:36:03 2016 +0200
*
***
*
@ -7501,12 +7501,14 @@ var PathItem = Item.extend({
case 'm':
case 'l':
var move = lower === 'm';
for (var j = 0; j < length; j += 2)
this[!j && move ? 'moveTo' : 'lineTo'](
current = getPoint(j));
for (var j = 0; j < length; j += 2) {
this[move ? 'moveTo' : 'lineTo'](current = getPoint(j));
if (move) {
start = current;
move = false;
}
}
control = current;
if (move)
start = current;
break;
case 'h':
case 'v':

14
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Aug 7 15:58:54 2016 +0200
* Date: Sun Aug 7 21:36:03 2016 +0200
*
***
*
@ -7501,12 +7501,14 @@ var PathItem = Item.extend({
case 'm':
case 'l':
var move = lower === 'm';
for (var j = 0; j < length; j += 2)
this[!j && move ? 'moveTo' : 'lineTo'](
current = getPoint(j));
for (var j = 0; j < length; j += 2) {
this[move ? 'moveTo' : 'lineTo'](current = getPoint(j));
if (move) {
start = current;
move = false;
}
}
control = current;
if (move)
start = current;
break;
case 'h':
case 'v':

File diff suppressed because one or more lines are too long

14
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Aug 7 15:58:54 2016 +0200
* Date: Sun Aug 7 21:36:03 2016 +0200
*
***
*
@ -7501,12 +7501,14 @@ var PathItem = Item.extend({
case 'm':
case 'l':
var move = lower === 'm';
for (var j = 0; j < length; j += 2)
this[!j && move ? 'moveTo' : 'lineTo'](
current = getPoint(j));
for (var j = 0; j < length; j += 2) {
this[move ? 'moveTo' : 'lineTo'](current = getPoint(j));
if (move) {
start = current;
move = false;
}
}
control = current;
if (move)
start = current;
break;
case 'h':
case 'v':

File diff suppressed because one or more lines are too long