Prebuilt module for commit 32aff8e895

This commit is contained in:
Paper.js Bot 2019-06-19 20:06:06 +00:00
parent d18f90bd6b
commit 9c36689492
6 changed files with 28 additions and 19 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Jun 19 21:56:44 2019 +0200
* Date: Wed Jun 19 14:59:41 2019 -0500
*
***
*
@ -3706,8 +3706,11 @@ new function() {
},
contains: function() {
return !!this._contains(
this._matrix._inverseTransform(Point.read(arguments)));
var matrix = this._matrix;
return (
matrix.isInvertible() &&
!!this._contains(matrix._inverseTransform(Point.read(arguments)))
);
},
_contains: function(point) {

9
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Jun 19 21:56:44 2019 +0200
* Date: Wed Jun 19 14:59:41 2019 -0500
*
***
*
@ -3703,8 +3703,11 @@ new function() {
},
contains: function() {
return !!this._contains(
this._matrix._inverseTransform(Point.read(arguments)));
var matrix = this._matrix;
return (
matrix.isInvertible() &&
!!this._contains(matrix._inverseTransform(Point.read(arguments)))
);
},
_contains: function(point) {

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.
*
* Date: Wed Jun 19 21:56:44 2019 +0200
* Date: Wed Jun 19 14:59:41 2019 -0500
*
***
*
@ -3706,8 +3706,11 @@ new function() {
},
contains: function() {
return !!this._contains(
this._matrix._inverseTransform(Point.read(arguments)));
var matrix = this._matrix;
return (
matrix.isInvertible() &&
!!this._contains(matrix._inverseTransform(Point.read(arguments)))
);
},
_contains: function(point) {

File diff suppressed because one or more lines are too long

2
dist/paper.d.ts vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Jun 19 21:56:44 2019 +0200
* Date: Wed Jun 19 14:59:41 2019 -0500
*
* This is an auto-generated type definition.
*/