mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Prebuilt module for commit 767a438286
This commit is contained in:
parent
a11862e235
commit
ebffa84a1b
8 changed files with 18 additions and 18 deletions
4
dist/docs/assets/js/paper.js
vendored
4
dist/docs/assets/js/paper.js
vendored
|
@ -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);
|
||||
}
|
||||
|
|
2
dist/docs/classes/CompoundPath.html
vendored
2
dist/docs/classes/CompoundPath.html
vendored
|
@ -7411,7 +7411,7 @@ function onMouseUp(event) {
|
|||
<h4>Returns:</h4>
|
||||
|
||||
<li>
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
|
2
dist/docs/classes/Path.html
vendored
2
dist/docs/classes/Path.html
vendored
|
@ -10106,7 +10106,7 @@ function onMouseUp(event) {
|
|||
<h4>Returns:</h4>
|
||||
|
||||
<li>
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
|
2
dist/docs/classes/PathItem.html
vendored
2
dist/docs/classes/PathItem.html
vendored
|
@ -1078,7 +1078,7 @@ function onMouseUp(event) {
|
|||
<h4>Returns:</h4>
|
||||
|
||||
<li>
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the shame shape, <tt>false</tt> otherwise
|
||||
<tt><tt>Boolean</tt></tt> — <tt>true</tt> if two paths describe the same shape, <tt>false</tt> otherwise
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
|
4
dist/paper-core.js
vendored
4
dist/paper-core.js
vendored
|
@ -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);
|
||||
}
|
||||
|
|
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
4
dist/paper-full.js
vendored
4
dist/paper-full.js
vendored
|
@ -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);
|
||||
}
|
||||
|
|
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
Loading…
Reference in a new issue