Prebuilt module for commit 79d446136a

This commit is contained in:
Paper.js Bot 2016-02-14 13:17:33 +00:00
parent 46d41ceb72
commit 9343567de7
5 changed files with 16 additions and 16 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Feb 14 14:11:52 2016 +0100
* Date: Sun Feb 14 14:15:17 2016 +0100
*
***
*
@ -8587,9 +8587,9 @@ new function() {
through = to;
to = Point.read(arguments);
} else {
var radius = Size.read(arguments);
if (Numerical.isZero(radius.width)
|| Numerical.isZero(radius.height))
var radius = Size.read(arguments),
isZero = Numerical.isZero;
if (isZero(radius.width) || isZero(radius.height))
return this.lineTo(to);
var rotation = Base.read(arguments),
clockwise = !!Base.read(arguments),

8
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Feb 14 14:11:52 2016 +0100
* Date: Sun Feb 14 14:15:17 2016 +0100
*
***
*
@ -8587,9 +8587,9 @@ new function() {
through = to;
to = Point.read(arguments);
} else {
var radius = Size.read(arguments);
if (Numerical.isZero(radius.width)
|| Numerical.isZero(radius.height))
var radius = Size.read(arguments),
isZero = Numerical.isZero;
if (isZero(radius.width) || 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

8
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Feb 14 14:11:52 2016 +0100
* Date: Sun Feb 14 14:15:17 2016 +0100
*
***
*
@ -8587,9 +8587,9 @@ new function() {
through = to;
to = Point.read(arguments);
} else {
var radius = Size.read(arguments);
if (Numerical.isZero(radius.width)
|| Numerical.isZero(radius.height))
var radius = Size.read(arguments),
isZero = Numerical.isZero;
if (isZero(radius.width) || 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