Prebuilt module for commit ed4347714b

This commit is contained in:
Paper.js Bot 2016-02-10 12:29:47 +00:00
parent fb3d92b97a
commit c8aa01291d
5 changed files with 26 additions and 29 deletions

View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; curve = next;
} }
} }
this._id = UID.get(CurveLocation);
this._setCurve(curve); this._setCurve(curve);
this._time = time; this._time = time;
this._point = point || curve.getPointAtTime(time); this._point = point || curve.getPointAtTime(time);
this._overlap = _overlap; this._overlap = _overlap;
this._distance = _distance; this._distance = _distance;
this._intersection = this._next = this._prev = null; this._intersection = this._next = this._previous = null;
}, },
_setCurve: function(curve) { _setCurve: function(curve) {
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
while (prev) { while (prev) {
if (prev === to) if (prev === to)
return; return;
prev = prev._prev; prev = prev._previous;
} }
while (from._next && from._next !== to) while (from._next && from._next !== to)
from = from._next; from = from._next;
if (!from._next) { if (!from._next) {
while (to._prev) while (to._previous)
to = to._prev; to = to._previous;
from._next = to; from._next = to;
to._prev = from; to._previous = from;
} }
} }

13
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; curve = next;
} }
} }
this._id = UID.get(CurveLocation);
this._setCurve(curve); this._setCurve(curve);
this._time = time; this._time = time;
this._point = point || curve.getPointAtTime(time); this._point = point || curve.getPointAtTime(time);
this._overlap = _overlap; this._overlap = _overlap;
this._distance = _distance; this._distance = _distance;
this._intersection = this._next = this._prev = null; this._intersection = this._next = this._previous = null;
}, },
_setCurve: function(curve) { _setCurve: function(curve) {
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
while (prev) { while (prev) {
if (prev === to) if (prev === to)
return; return;
prev = prev._prev; prev = prev._previous;
} }
while (from._next && from._next !== to) while (from._next && from._next !== to)
from = from._next; from = from._next;
if (!from._next) { if (!from._next) {
while (to._prev) while (to._previous)
to = to._prev; to = to._previous;
from._next = to; from._next = to;
to._prev = from; to._previous = from;
} }
} }

File diff suppressed because one or more lines are too long

13
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; curve = next;
} }
} }
this._id = UID.get(CurveLocation);
this._setCurve(curve); this._setCurve(curve);
this._time = time; this._time = time;
this._point = point || curve.getPointAtTime(time); this._point = point || curve.getPointAtTime(time);
this._overlap = _overlap; this._overlap = _overlap;
this._distance = _distance; this._distance = _distance;
this._intersection = this._next = this._prev = null; this._intersection = this._next = this._previous = null;
}, },
_setCurve: function(curve) { _setCurve: function(curve) {
@ -9337,15 +9336,15 @@ PathItem.inject(new function() {
while (prev) { while (prev) {
if (prev === to) if (prev === to)
return; return;
prev = prev._prev; prev = prev._previous;
} }
while (from._next && from._next !== to) while (from._next && from._next !== to)
from = from._next; from = from._next;
if (!from._next) { if (!from._next) {
while (to._prev) while (to._previous)
to = to._prev; to = to._previous;
from._next = to; from._next = to;
to._prev = from; to._previous = from;
} }
} }

File diff suppressed because one or more lines are too long