mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Prebuilt module for commit ed4347714b
This commit is contained in:
parent
fb3d92b97a
commit
c8aa01291d
5 changed files with 26 additions and 29 deletions
13
dist/docs/assets/js/paper.js
vendored
13
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Feb 9 17:02:03 2016 +0100
|
||||
* Date: Wed Feb 10 13:26:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6825,13 +6825,12 @@ var CurveLocation = Base.extend({
|
|||
curve = next;
|
||||
}
|
||||
}
|
||||
this._id = UID.get(CurveLocation);
|
||||
this._setCurve(curve);
|
||||
this._time = time;
|
||||
this._point = point || curve.getPointAtTime(time);
|
||||
this._overlap = _overlap;
|
||||
this._distance = _distance;
|
||||
this._intersection = this._next = this._prev = null;
|
||||
this._intersection = this._next = this._previous = null;
|
||||
},
|
||||
|
||||
_setCurve: function(curve) {
|
||||
|
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
|
|||
while (prev) {
|
||||
if (prev === to)
|
||||
return;
|
||||
prev = prev._prev;
|
||||
prev = prev._previous;
|
||||
}
|
||||
while (from._next && from._next !== to)
|
||||
from = from._next;
|
||||
if (!from._next) {
|
||||
while (to._prev)
|
||||
to = to._prev;
|
||||
while (to._previous)
|
||||
to = to._previous;
|
||||
from._next = to;
|
||||
to._prev = from;
|
||||
to._previous = from;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
13
dist/paper-core.js
vendored
13
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Feb 9 17:02:03 2016 +0100
|
||||
* Date: Wed Feb 10 13:26:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6825,13 +6825,12 @@ var CurveLocation = Base.extend({
|
|||
curve = next;
|
||||
}
|
||||
}
|
||||
this._id = UID.get(CurveLocation);
|
||||
this._setCurve(curve);
|
||||
this._time = time;
|
||||
this._point = point || curve.getPointAtTime(time);
|
||||
this._overlap = _overlap;
|
||||
this._distance = _distance;
|
||||
this._intersection = this._next = this._prev = null;
|
||||
this._intersection = this._next = this._previous = null;
|
||||
},
|
||||
|
||||
_setCurve: function(curve) {
|
||||
|
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
|
|||
while (prev) {
|
||||
if (prev === to)
|
||||
return;
|
||||
prev = prev._prev;
|
||||
prev = prev._previous;
|
||||
}
|
||||
while (from._next && from._next !== to)
|
||||
from = from._next;
|
||||
if (!from._next) {
|
||||
while (to._prev)
|
||||
to = to._prev;
|
||||
while (to._previous)
|
||||
to = to._previous;
|
||||
from._next = to;
|
||||
to._prev = from;
|
||||
to._previous = from;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
8
dist/paper-core.min.js
vendored
8
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
13
dist/paper-full.js
vendored
13
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Feb 9 17:02:03 2016 +0100
|
||||
* Date: Wed Feb 10 13:26:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6825,13 +6825,12 @@ var CurveLocation = Base.extend({
|
|||
curve = next;
|
||||
}
|
||||
}
|
||||
this._id = UID.get(CurveLocation);
|
||||
this._setCurve(curve);
|
||||
this._time = time;
|
||||
this._point = point || curve.getPointAtTime(time);
|
||||
this._overlap = _overlap;
|
||||
this._distance = _distance;
|
||||
this._intersection = this._next = this._prev = null;
|
||||
this._intersection = this._next = this._previous = null;
|
||||
},
|
||||
|
||||
_setCurve: function(curve) {
|
||||
|
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
|
|||
while (prev) {
|
||||
if (prev === to)
|
||||
return;
|
||||
prev = prev._prev;
|
||||
prev = prev._previous;
|
||||
}
|
||||
while (from._next && from._next !== to)
|
||||
from = from._next;
|
||||
if (!from._next) {
|
||||
while (to._prev)
|
||||
to = to._prev;
|
||||
while (to._previous)
|
||||
to = to._previous;
|
||||
from._next = to;
|
||||
to._prev = from;
|
||||
to._previous = from;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
8
dist/paper-full.min.js
vendored
8
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue