Prebuilt module for commit 767a438286

This commit is contained in:
Paper.js Bot 2016-12-29 08:36:20 +00:00
parent a11862e235
commit ebffa84a1b
8 changed files with 18 additions and 18 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Dec 28 23:55:20 2016 +0100
* Date: Thu Dec 29 09:34:05 2016 +0100
*
***
*
@ -9275,7 +9275,7 @@ statics: {
if (style.getStrokeJoin() === 'miter')
joinRadius = strokeRadius * style.getMiterLimit();
if (style.getStrokeCap() === 'square')
joinRadius = Math.max(joinRadius, strokeRadius * Math.sqrt(2));
joinRadius = Math.max(joinRadius, strokeRadius * Math.SQRT2);
strokePadding = Path._getStrokePadding(strokeRadius, strokeMatrix);
joinPadding = Path._getStrokePadding(joinRadius, strokeMatrix);
}

View file

@ -7411,7 +7411,7 @@ function onMouseUp(event) {
<h4>Returns:</h4>
<li>
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
</li>
</ul>

View file

@ -10106,7 +10106,7 @@ function onMouseUp(event) {
<h4>Returns:</h4>
<li>
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
</li>
</ul>

View file

@ -1078,7 +1078,7 @@ function onMouseUp(event) {
<h4>Returns:</h4>
<li>
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
<tt><tt>Boolean</tt></tt>&nbsp;&mdash;&nbsp;<tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
</li>
</ul>

4
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Dec 28 23:55:20 2016 +0100
* Date: Thu Dec 29 09:34:05 2016 +0100
*
***
*
@ -9275,7 +9275,7 @@ statics: {
if (style.getStrokeJoin() === 'miter')
joinRadius = strokeRadius * style.getMiterLimit();
if (style.getStrokeCap() === 'square')
joinRadius = Math.max(joinRadius, strokeRadius * Math.sqrt(2));
joinRadius = Math.max(joinRadius, strokeRadius * Math.SQRT2);
strokePadding = Path._getStrokePadding(strokeRadius, strokeMatrix);
joinPadding = Path._getStrokePadding(joinRadius, strokeMatrix);
}

File diff suppressed because one or more lines are too long

4
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Dec 28 23:55:20 2016 +0100
* Date: Thu Dec 29 09:34:05 2016 +0100
*
***
*
@ -9275,7 +9275,7 @@ statics: {
if (style.getStrokeJoin() === 'miter')
joinRadius = strokeRadius * style.getMiterLimit();
if (style.getStrokeCap() === 'square')
joinRadius = Math.max(joinRadius, strokeRadius * Math.sqrt(2));
joinRadius = Math.max(joinRadius, strokeRadius * Math.SQRT2);
strokePadding = Path._getStrokePadding(strokeRadius, strokeMatrix);
joinPadding = Path._getStrokePadding(joinRadius, strokeMatrix);
}

File diff suppressed because one or more lines are too long