mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Prebuilt module for commit 0018b69e4d
This commit is contained in:
parent
cb45ae6a5a
commit
32a352573b
5 changed files with 37 additions and 31 deletions
6
dist/docs/assets/js/paper.js
vendored
6
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Date: Tue Jan 3 00:08:28 2017 +0100
|
* Date: Tue Jan 3 00:20:10 2017 +0100
|
||||||
*
|
*
|
||||||
***
|
***
|
||||||
*
|
*
|
||||||
|
@ -9847,7 +9847,8 @@ PathItem.inject(new function() {
|
||||||
exclude = include && !include(loc),
|
exclude = include && !include(loc),
|
||||||
curve = loc._curve,
|
curve = loc._curve,
|
||||||
segment;
|
segment;
|
||||||
if (curve && curve !== prevCurve) {
|
if (curve) {
|
||||||
|
if (curve !== prevCurve) {
|
||||||
clearHandles = !curve.hasHandles()
|
clearHandles = !curve.hasHandles()
|
||||||
|| clearLookup && clearLookup[getId(curve)];
|
|| clearLookup && clearLookup[getId(curve)];
|
||||||
rescaleLocs = [];
|
rescaleLocs = [];
|
||||||
|
@ -9856,6 +9857,7 @@ PathItem.inject(new function() {
|
||||||
loc._time /= prevTime;
|
loc._time /= prevTime;
|
||||||
}
|
}
|
||||||
prevCurve = curve;
|
prevCurve = curve;
|
||||||
|
}
|
||||||
if (exclude) {
|
if (exclude) {
|
||||||
rescaleLocs.push(loc);
|
rescaleLocs.push(loc);
|
||||||
continue;
|
continue;
|
||||||
|
|
6
dist/paper-core.js
vendored
6
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Date: Tue Jan 3 00:08:28 2017 +0100
|
* Date: Tue Jan 3 00:20:10 2017 +0100
|
||||||
*
|
*
|
||||||
***
|
***
|
||||||
*
|
*
|
||||||
|
@ -9847,7 +9847,8 @@ PathItem.inject(new function() {
|
||||||
exclude = include && !include(loc),
|
exclude = include && !include(loc),
|
||||||
curve = loc._curve,
|
curve = loc._curve,
|
||||||
segment;
|
segment;
|
||||||
if (curve && curve !== prevCurve) {
|
if (curve) {
|
||||||
|
if (curve !== prevCurve) {
|
||||||
clearHandles = !curve.hasHandles()
|
clearHandles = !curve.hasHandles()
|
||||||
|| clearLookup && clearLookup[getId(curve)];
|
|| clearLookup && clearLookup[getId(curve)];
|
||||||
rescaleLocs = [];
|
rescaleLocs = [];
|
||||||
|
@ -9856,6 +9857,7 @@ PathItem.inject(new function() {
|
||||||
loc._time /= prevTime;
|
loc._time /= prevTime;
|
||||||
}
|
}
|
||||||
prevCurve = curve;
|
prevCurve = curve;
|
||||||
|
}
|
||||||
if (exclude) {
|
if (exclude) {
|
||||||
rescaleLocs.push(loc);
|
rescaleLocs.push(loc);
|
||||||
continue;
|
continue;
|
||||||
|
|
4
dist/paper-core.min.js
vendored
4
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
6
dist/paper-full.js
vendored
6
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Date: Tue Jan 3 00:08:28 2017 +0100
|
* Date: Tue Jan 3 00:20:10 2017 +0100
|
||||||
*
|
*
|
||||||
***
|
***
|
||||||
*
|
*
|
||||||
|
@ -9847,7 +9847,8 @@ PathItem.inject(new function() {
|
||||||
exclude = include && !include(loc),
|
exclude = include && !include(loc),
|
||||||
curve = loc._curve,
|
curve = loc._curve,
|
||||||
segment;
|
segment;
|
||||||
if (curve && curve !== prevCurve) {
|
if (curve) {
|
||||||
|
if (curve !== prevCurve) {
|
||||||
clearHandles = !curve.hasHandles()
|
clearHandles = !curve.hasHandles()
|
||||||
|| clearLookup && clearLookup[getId(curve)];
|
|| clearLookup && clearLookup[getId(curve)];
|
||||||
rescaleLocs = [];
|
rescaleLocs = [];
|
||||||
|
@ -9856,6 +9857,7 @@ PathItem.inject(new function() {
|
||||||
loc._time /= prevTime;
|
loc._time /= prevTime;
|
||||||
}
|
}
|
||||||
prevCurve = curve;
|
prevCurve = curve;
|
||||||
|
}
|
||||||
if (exclude) {
|
if (exclude) {
|
||||||
rescaleLocs.push(loc);
|
rescaleLocs.push(loc);
|
||||||
continue;
|
continue;
|
||||||
|
|
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
Loading…
Reference in a new issue