Prebuilt module for commit 4ba406bfe3

This commit is contained in:
Paper.js Bot 2019-06-09 21:39:39 +00:00
parent 1302dd10e0
commit 6468e75480
7 changed files with 12 additions and 14 deletions

View file

@ -10,6 +10,7 @@
- Fix drawing with compound-paths as clip-items (#1361).
- Fix drawing of path selection with small handle size (#1327).
- Do not ignore `Group#clipItem.matrix` in `Group#internalBounds` (#1427).
- Correctly calculate bounds with nested empty items (#1467).
- Fix color change propagation on groups (#1152).
- SVG Export: Fix error when `Item#matrix` is not invertible (#1580).

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Oct 17 10:11:35 2018 +0200
* Date: Sun Jun 9 23:35:33 2019 +0200
*
***
*
@ -4722,8 +4722,7 @@ var Group = Item.extend({
_getBounds: function _getBounds(matrix, options) {
var clipItem = this._getClipItem();
return clipItem
? clipItem._getCachedBounds(
matrix && matrix.appended(clipItem._matrix) || clipItem._matrix,
? clipItem._getCachedBounds(clipItem._matrix.prepended(matrix),
Base.set({}, options, { stroke: false }))
: _getBounds.base.call(this, matrix, options);
},

5
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Oct 17 10:11:35 2018 +0200
* Date: Sun Jun 9 23:35:33 2019 +0200
*
***
*
@ -4719,8 +4719,7 @@ var Group = Item.extend({
_getBounds: function _getBounds(matrix, options) {
var clipItem = this._getClipItem();
return clipItem
? clipItem._getCachedBounds(
matrix && matrix.appended(clipItem._matrix) || clipItem._matrix,
? clipItem._getCachedBounds(clipItem._matrix.prepended(matrix),
Base.set({}, options, { stroke: false }))
: _getBounds.base.call(this, matrix, options);
},

File diff suppressed because one or more lines are too long

5
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Oct 17 10:11:35 2018 +0200
* Date: Sun Jun 9 23:35:33 2019 +0200
*
***
*
@ -4722,8 +4722,7 @@ var Group = Item.extend({
_getBounds: function _getBounds(matrix, options) {
var clipItem = this._getClipItem();
return clipItem
? clipItem._getCachedBounds(
matrix && matrix.appended(clipItem._matrix) || clipItem._matrix,
? clipItem._getCachedBounds(clipItem._matrix.prepended(matrix),
Base.set({}, options, { stroke: false }))
: _getBounds.base.call(this, matrix, options);
},

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 Oct 17 10:11:35 2018 +0200
* Date: Sun Jun 9 23:35:33 2019 +0200
*
* This is an auto-generated type definition.
*/