Prebuilt module for commit 25f2a0e779

This commit is contained in:
Paper.js Bot 2019-06-09 14:41:42 +00:00
parent 95c18db6a2
commit 2d68b128ee
7 changed files with 24 additions and 20 deletions

View file

@ -8,6 +8,7 @@
### Fixed
- Fix drawing with compound path as clip item (#1361).
- SVG Export: Fix error when `Item#matrix` is not invertible (#1580).
- SVG Import: Fix gradient default values (#1632).
- JSON Import: Prevent overriding `Item#insert()` (#1392).

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Mon Nov 5 18:11:13 2018 +0100
* Date: Fri Nov 9 10:26:54 2018 +0100
*
***
*
@ -4530,8 +4530,9 @@ new function() {
this._draw(ctx, param, viewMatrix, strokeMatrix);
ctx.restore();
matrices.pop();
if (param.clip && !param.dontFinish)
ctx.clip();
if (param.clip && !param.dontFinish) {
ctx.clip(this.getFillRule());
}
if (!direct) {
BlendMode.process(blendMode, ctx, mainCtx, opacity,
itemOffset.subtract(prevOffset).multiply(pixelRatio));

7
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Mon Nov 5 18:11:13 2018 +0100
* Date: Fri Nov 9 10:26:54 2018 +0100
*
***
*
@ -4527,8 +4527,9 @@ new function() {
this._draw(ctx, param, viewMatrix, strokeMatrix);
ctx.restore();
matrices.pop();
if (param.clip && !param.dontFinish)
ctx.clip();
if (param.clip && !param.dontFinish) {
ctx.clip(this.getFillRule());
}
if (!direct) {
BlendMode.process(blendMode, ctx, mainCtx, opacity,
itemOffset.subtract(prevOffset).multiply(pixelRatio));

File diff suppressed because one or more lines are too long

7
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Mon Nov 5 18:11:13 2018 +0100
* Date: Fri Nov 9 10:26:54 2018 +0100
*
***
*
@ -4530,8 +4530,9 @@ new function() {
this._draw(ctx, param, viewMatrix, strokeMatrix);
ctx.restore();
matrices.pop();
if (param.clip && !param.dontFinish)
ctx.clip();
if (param.clip && !param.dontFinish) {
ctx.clip(this.getFillRule());
}
if (!direct) {
BlendMode.process(blendMode, ctx, mainCtx, opacity,
itemOffset.subtract(prevOffset).multiply(pixelRatio));

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: Mon Nov 5 18:11:13 2018 +0100
* Date: Fri Nov 9 10:26:54 2018 +0100
*
* This is an auto-generated type definition.
*/