Prebuilt module for commit 2ead16ca89

This commit is contained in:
Paper.js Bot 2017-02-12 14:51:31 +00:00
parent 316da0f7b2
commit beefdd8dbe
5 changed files with 16 additions and 19 deletions

View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; return locations;
} }
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2, function getIntersections(curves1, curves2, include, matrix1, matrix2,
_returnFirst) { _returnFirst) {
var self = !curves2; var self = !curves2;
if (self) if (self)
@ -7183,9 +7183,8 @@ new function() {
}, },
statics: { statics: {
getCurveIntersections: getCurveIntersections,
getCurvesIntersections: getCurvesIntersections,
getOverlaps: getOverlaps, getOverlaps: getOverlaps,
getIntersections: getIntersections,
getCurveLineIntersections: getCurveLineIntersections getCurveLineIntersections: getCurveLineIntersections
} }
}; };
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
matrix2 = self ? matrix1 matrix2 = self ? matrix1
: (_matrix || path._matrix)._orNullIfIdentity(); : (_matrix || path._matrix)._orNullIfIdentity();
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2)) return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
? Curve.getCurvesIntersections( ? Curve.getIntersections(
this.getCurves(), !self && path.getCurves(), include, this.getCurves(), !self && path.getCurves(), include,
matrix1, matrix2, _returnFirst) matrix1, matrix2, _returnFirst)
: []; : [];

9
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; return locations;
} }
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2, function getIntersections(curves1, curves2, include, matrix1, matrix2,
_returnFirst) { _returnFirst) {
var self = !curves2; var self = !curves2;
if (self) if (self)
@ -7183,9 +7183,8 @@ new function() {
}, },
statics: { statics: {
getCurveIntersections: getCurveIntersections,
getCurvesIntersections: getCurvesIntersections,
getOverlaps: getOverlaps, getOverlaps: getOverlaps,
getIntersections: getIntersections,
getCurveLineIntersections: getCurveLineIntersections getCurveLineIntersections: getCurveLineIntersections
} }
}; };
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
matrix2 = self ? matrix1 matrix2 = self ? matrix1
: (_matrix || path._matrix)._orNullIfIdentity(); : (_matrix || path._matrix)._orNullIfIdentity();
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2)) return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
? Curve.getCurvesIntersections( ? Curve.getIntersections(
this.getCurves(), !self && path.getCurves(), include, this.getCurves(), !self && path.getCurves(), include,
matrix1, matrix2, _returnFirst) matrix1, matrix2, _returnFirst)
: []; : [];

File diff suppressed because one or more lines are too long

9
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; return locations;
} }
function getCurvesIntersections(curves1, curves2, include, matrix1, matrix2, function getIntersections(curves1, curves2, include, matrix1, matrix2,
_returnFirst) { _returnFirst) {
var self = !curves2; var self = !curves2;
if (self) if (self)
@ -7183,9 +7183,8 @@ new function() {
}, },
statics: { statics: {
getCurveIntersections: getCurveIntersections,
getCurvesIntersections: getCurvesIntersections,
getOverlaps: getOverlaps, getOverlaps: getOverlaps,
getIntersections: getIntersections,
getCurveLineIntersections: getCurveLineIntersections getCurveLineIntersections: getCurveLineIntersections
} }
}; };
@ -7706,7 +7705,7 @@ var PathItem = Item.extend({
matrix2 = self ? matrix1 matrix2 = self ? matrix1
: (_matrix || path._matrix)._orNullIfIdentity(); : (_matrix || path._matrix)._orNullIfIdentity();
return self || this.getBounds(matrix1).touches(path.getBounds(matrix2)) return self || this.getBounds(matrix1).touches(path.getBounds(matrix2))
? Curve.getCurvesIntersections( ? Curve.getIntersections(
this.getCurves(), !self && path.getCurves(), include, this.getCurves(), !self && path.getCurves(), include,
matrix1, matrix2, _returnFirst) matrix1, matrix2, _returnFirst)
: []; : [];

File diff suppressed because one or more lines are too long