mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-09 14:22:08 -05:00
Prebuilt module for commit 25f2a0e779
This commit is contained in:
parent
95c18db6a2
commit
2d68b128ee
7 changed files with 24 additions and 20 deletions
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- Fix drawing with compound path as clip item (#1361).
|
||||||
- SVG Export: Fix error when `Item#matrix` is not invertible (#1580).
|
- SVG Export: Fix error when `Item#matrix` is not invertible (#1580).
|
||||||
- SVG Import: Fix gradient default values (#1632).
|
- SVG Import: Fix gradient default values (#1632).
|
||||||
- JSON Import: Prevent overriding `Item#insert()` (#1392).
|
- JSON Import: Prevent overriding `Item#insert()` (#1392).
|
||||||
|
|
7
dist/docs/assets/js/paper.js
vendored
7
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
this._draw(ctx, param, viewMatrix, strokeMatrix);
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
matrices.pop();
|
matrices.pop();
|
||||||
if (param.clip && !param.dontFinish)
|
if (param.clip && !param.dontFinish) {
|
||||||
ctx.clip();
|
ctx.clip(this.getFillRule());
|
||||||
|
}
|
||||||
if (!direct) {
|
if (!direct) {
|
||||||
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
||||||
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
||||||
|
|
7
dist/paper-core.js
vendored
7
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
this._draw(ctx, param, viewMatrix, strokeMatrix);
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
matrices.pop();
|
matrices.pop();
|
||||||
if (param.clip && !param.dontFinish)
|
if (param.clip && !param.dontFinish) {
|
||||||
ctx.clip();
|
ctx.clip(this.getFillRule());
|
||||||
|
}
|
||||||
if (!direct) {
|
if (!direct) {
|
||||||
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
||||||
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
||||||
|
|
6
dist/paper-core.min.js
vendored
6
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
7
dist/paper-full.js
vendored
7
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
this._draw(ctx, param, viewMatrix, strokeMatrix);
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
matrices.pop();
|
matrices.pop();
|
||||||
if (param.clip && !param.dontFinish)
|
if (param.clip && !param.dontFinish) {
|
||||||
ctx.clip();
|
ctx.clip(this.getFillRule());
|
||||||
|
}
|
||||||
if (!direct) {
|
if (!direct) {
|
||||||
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
BlendMode.process(blendMode, ctx, mainCtx, opacity,
|
||||||
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
itemOffset.subtract(prevOffset).multiply(pixelRatio));
|
||||||
|
|
14
dist/paper-full.min.js
vendored
14
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/paper.d.ts
vendored
2
dist/paper.d.ts
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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.
|
* This is an auto-generated type definition.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue