mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-13 16:33:28 -04:00
Prebuilt module for commit 8792d142b3
This commit is contained in:
parent
3db5ae0b77
commit
c0be51a272
6 changed files with 18 additions and 20 deletions
|
@ -290,7 +290,11 @@ You need to sign the Paper.js CLA to be able to contribute (see below).
|
|||
Also, in your first contribution, add yourself to the end of `AUTHORS.md` (which
|
||||
of course is optional).
|
||||
|
||||
In addition to contributing code you can also triage issues which may include reproducing bug reports or asking for vital information, such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to [subscribe to paper.js on CodeTriage](https://www.codetriage.com/paperjs/paper.js).
|
||||
In addition to contributing code you can also triage issues which may include
|
||||
reproducing bug reports or asking for vital information, such as version numbers
|
||||
or reproduction instructions. If you would like to start triaging issues, one
|
||||
easy way to get started is to
|
||||
[subscribe to paper.js on CodeTriage](https://www.codetriage.com/paperjs/paper.js).
|
||||
|
||||
**Get the source (for contributing):**
|
||||
|
||||
|
|
8
dist/docs/assets/js/paper.js
vendored
8
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Sep 29 14:54:08 2018 +0200
|
||||
* Date: Sat Sep 29 15:08:19 2018 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -10303,13 +10303,11 @@ PathItem.inject(new function() {
|
|||
if (pathWinding.quality < 1) {
|
||||
continue;
|
||||
} else {
|
||||
wind = {winding: 0, quality: 1};
|
||||
wind = { winding: 0, quality: 1 };
|
||||
}
|
||||
}
|
||||
}
|
||||
if (wind === null) {
|
||||
wind = getWinding(pt, curves, dir, true);
|
||||
}
|
||||
wind = wind || getWinding(pt, curves, dir, true);
|
||||
if (wind.quality > winding.quality)
|
||||
winding = wind;
|
||||
break;
|
||||
|
|
8
dist/paper-core.js
vendored
8
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Sep 29 14:54:08 2018 +0200
|
||||
* Date: Sat Sep 29 15:08:19 2018 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -10303,13 +10303,11 @@ PathItem.inject(new function() {
|
|||
if (pathWinding.quality < 1) {
|
||||
continue;
|
||||
} else {
|
||||
wind = {winding: 0, quality: 1};
|
||||
wind = { winding: 0, quality: 1 };
|
||||
}
|
||||
}
|
||||
}
|
||||
if (wind === null) {
|
||||
wind = getWinding(pt, curves, dir, true);
|
||||
}
|
||||
wind = wind || getWinding(pt, curves, dir, true);
|
||||
if (wind.quality > winding.quality)
|
||||
winding = wind;
|
||||
break;
|
||||
|
|
4
dist/paper-core.min.js
vendored
4
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
8
dist/paper-full.js
vendored
8
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Sep 29 14:54:08 2018 +0200
|
||||
* Date: Sat Sep 29 15:08:19 2018 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -10303,13 +10303,11 @@ PathItem.inject(new function() {
|
|||
if (pathWinding.quality < 1) {
|
||||
continue;
|
||||
} else {
|
||||
wind = {winding: 0, quality: 1};
|
||||
wind = { winding: 0, quality: 1 };
|
||||
}
|
||||
}
|
||||
}
|
||||
if (wind === null) {
|
||||
wind = getWinding(pt, curves, dir, true);
|
||||
}
|
||||
wind = wind || getWinding(pt, curves, dir, true);
|
||||
if (wind.quality > winding.quality)
|
||||
winding = wind;
|
||||
break;
|
||||
|
|
4
dist/paper-full.min.js
vendored
4
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue