Prebuilt module for commit 9c9f40d05a

This commit is contained in:
Paper.js Bot 2016-02-14 13:13:58 +00:00
parent 6ce1c3ccf9
commit 46d41ceb72
5 changed files with 20 additions and 17 deletions

View file

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

@ -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),

File diff suppressed because one or more lines are too long

5
dist/paper-full.js vendored
View file

@ -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),

File diff suppressed because one or more lines are too long