mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Prebuilt module for commit 978cd94a9e
This commit is contained in:
parent
84d412bc82
commit
e6900bae62
6 changed files with 27 additions and 21 deletions
12
dist/docs/assets/js/paper.js
vendored
12
dist/docs/assets/js/paper.js
vendored
|
@ -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
12
dist/paper-core.js
vendored
|
@ -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],
|
||||
|
|
6
dist/paper-core.min.js
vendored
6
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
12
dist/paper-full.js
vendored
12
dist/paper-full.js
vendored
|
@ -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],
|
||||
|
|
4
dist/paper-full.min.js
vendored
4
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/paper.d.ts
vendored
2
dist/paper.d.ts
vendored
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue