Prebuilt module for commit 8792d142b3

This commit is contained in:
Paper.js Bot 2018-09-29 13:13:44 +00:00
parent 3db5ae0b77
commit c0be51a272
6 changed files with 18 additions and 20 deletions

View file

@ -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):**

View file

@ -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
View file

@ -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;

File diff suppressed because one or more lines are too long

8
dist/paper-full.js vendored
View file

@ -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;

File diff suppressed because one or more lines are too long