mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Prebuilt module for commit 2ead16ca89
This commit is contained in:
parent
316da0f7b2
commit
beefdd8dbe
5 changed files with 16 additions and 19 deletions
9
dist/docs/assets/js/paper.js
vendored
9
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Feb 12 15:42:12 2017 +0100
|
||||
* Date: Sun Feb 12 15:47:01 2017 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -7065,7 +7065,7 @@ new function() {
|
|||
return locations;
|
||||
}
|
||||
|
||||
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
function getIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
_returnFirst) {
|
||||
var self = !curves2;
|
||||
if (self)
|
||||
|
@ -7183,9 +7183,8 @@ new function() {
|
|||
},
|
||||
|
||||
statics: {
|
||||
getCurveIntersections: getCurveIntersections,
|
||||
getCurvesIntersections: getCurvesIntersections,
|
||||
getOverlaps: getOverlaps,
|
||||
getIntersections: getIntersections,
|
||||
getCurveLineIntersections: getCurveLineIntersections
|
||||
}
|
||||
};
|
||||
|
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
|
|||
matrix2 = self ? matrix1
|
||||
: (_matrix || path._matrix)._orNullIfIdentity();
|
||||
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
|
||||
? Curve.getCurvesIntersections(
|
||||
? Curve.getIntersections(
|
||||
this.getCurves(), !self && path.getCurves(), include,
|
||||
matrix1, matrix2, _returnFirst)
|
||||
: [];
|
||||
|
|
9
dist/paper-core.js
vendored
9
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Feb 12 15:42:12 2017 +0100
|
||||
* Date: Sun Feb 12 15:47:01 2017 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -7065,7 +7065,7 @@ new function() {
|
|||
return locations;
|
||||
}
|
||||
|
||||
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
function getIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
_returnFirst) {
|
||||
var self = !curves2;
|
||||
if (self)
|
||||
|
@ -7183,9 +7183,8 @@ new function() {
|
|||
},
|
||||
|
||||
statics: {
|
||||
getCurveIntersections: getCurveIntersections,
|
||||
getCurvesIntersections: getCurvesIntersections,
|
||||
getOverlaps: getOverlaps,
|
||||
getIntersections: getIntersections,
|
||||
getCurveLineIntersections: getCurveLineIntersections
|
||||
}
|
||||
};
|
||||
|
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
|
|||
matrix2 = self ? matrix1
|
||||
: (_matrix || path._matrix)._orNullIfIdentity();
|
||||
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
|
||||
? Curve.getCurvesIntersections(
|
||||
? Curve.getIntersections(
|
||||
this.getCurves(), !self && path.getCurves(), include,
|
||||
matrix1, matrix2, _returnFirst)
|
||||
: [];
|
||||
|
|
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
9
dist/paper-full.js
vendored
9
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Feb 12 15:42:12 2017 +0100
|
||||
* Date: Sun Feb 12 15:47:01 2017 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -7065,7 +7065,7 @@ new function() {
|
|||
return locations;
|
||||
}
|
||||
|
||||
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
function getIntersections(curves1, curves2, include, matrix1, matrix2,
|
||||
_returnFirst) {
|
||||
var self = !curves2;
|
||||
if (self)
|
||||
|
@ -7183,9 +7183,8 @@ new function() {
|
|||
},
|
||||
|
||||
statics: {
|
||||
getCurveIntersections: getCurveIntersections,
|
||||
getCurvesIntersections: getCurvesIntersections,
|
||||
getOverlaps: getOverlaps,
|
||||
getIntersections: getIntersections,
|
||||
getCurveLineIntersections: getCurveLineIntersections
|
||||
}
|
||||
};
|
||||
|
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
|
|||
matrix2 = self ? matrix1
|
||||
: (_matrix || path._matrix)._orNullIfIdentity();
|
||||
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
|
||||
? Curve.getCurvesIntersections(
|
||||
? Curve.getIntersections(
|
||||
this.getCurves(), !self && path.getCurves(), include,
|
||||
matrix1, matrix2, _returnFirst)
|
||||
: [];
|
||||
|
|
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