Prebuilt module for commit 978cd94a9e

This commit is contained in:
Paper.js Bot 2019-06-22 16:52:03 +00:00
parent 84d412bc82
commit e6900bae62
6 changed files with 27 additions and 21 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jun 22 18:42:19 2019 +0200
* Date: Sat Jun 22 18:48:16 2019 +0200
*
***
*
@ -10476,10 +10476,12 @@ PathItem.inject(new function() {
totalLength = 0,
winding;
do {
var curve = segment.getCurve(),
length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
var curve = segment.getCurve();
if (curve) {
var length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
}
segment = segment.getNext();
} while (segment && !segment._intersection && segment !== start);
var offsets = [0.5, 0.25, 0.75],

12
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jun 22 18:42:19 2019 +0200
* Date: Sat Jun 22 18:48:16 2019 +0200
*
***
*
@ -10473,10 +10473,12 @@ PathItem.inject(new function() {
totalLength = 0,
winding;
do {
var curve = segment.getCurve(),
length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
var curve = segment.getCurve();
if (curve) {
var length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
}
segment = segment.getNext();
} while (segment && !segment._intersection && segment !== start);
var offsets = [0.5, 0.25, 0.75],

File diff suppressed because one or more lines are too long

12
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jun 22 18:42:19 2019 +0200
* Date: Sat Jun 22 18:48:16 2019 +0200
*
***
*
@ -10476,10 +10476,12 @@ PathItem.inject(new function() {
totalLength = 0,
winding;
do {
var curve = segment.getCurve(),
length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
var curve = segment.getCurve();
if (curve) {
var length = curve.getLength();
chain.push({ segment: segment, curve: curve, length: length });
totalLength += length;
}
segment = segment.getNext();
} while (segment && !segment._intersection && segment !== start);
var offsets = [0.5, 0.25, 0.75],

File diff suppressed because one or more lines are too long

2
dist/paper.d.ts vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jun 22 18:42:19 2019 +0200
* Date: Sat Jun 22 18:48:16 2019 +0200
*
* This is an auto-generated type definition.
*/