mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Prebuilt module for commit 9c9f40d05a
This commit is contained in:
parent
6ce1c3ccf9
commit
46d41ceb72
5 changed files with 20 additions and 17 deletions
5
dist/docs/assets/js/paper.js
vendored
5
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
* Date: Sun Feb 14 14:11:52 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -8588,7 +8588,8 @@ new function() {
|
|||
to = Point.read(arguments);
|
||||
} else {
|
||||
var radius = Size.read(arguments);
|
||||
if (radius.isZero())
|
||||
if (Numerical.isZero(radius.width)
|
||||
|| Numerical.isZero(radius.height))
|
||||
return this.lineTo(to);
|
||||
var rotation = Base.read(arguments),
|
||||
clockwise = !!Base.read(arguments),
|
||||
|
|
5
dist/paper-core.js
vendored
5
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
* Date: Sun Feb 14 14:11:52 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -8588,7 +8588,8 @@ new function() {
|
|||
to = Point.read(arguments);
|
||||
} else {
|
||||
var radius = Size.read(arguments);
|
||||
if (radius.isZero())
|
||||
if (Numerical.isZero(radius.width)
|
||||
|| Numerical.isZero(radius.height))
|
||||
return this.lineTo(to);
|
||||
var rotation = Base.read(arguments),
|
||||
clockwise = !!Base.read(arguments),
|
||||
|
|
10
dist/paper-core.min.js
vendored
10
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
5
dist/paper-full.js
vendored
5
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
* Date: Sun Feb 14 14:11:52 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -8588,7 +8588,8 @@ new function() {
|
|||
to = Point.read(arguments);
|
||||
} else {
|
||||
var radius = Size.read(arguments);
|
||||
if (radius.isZero())
|
||||
if (Numerical.isZero(radius.width)
|
||||
|| Numerical.isZero(radius.height))
|
||||
return this.lineTo(to);
|
||||
var rotation = Base.read(arguments),
|
||||
clockwise = !!Base.read(arguments),
|
||||
|
|
12
dist/paper-full.min.js
vendored
12
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue