mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Prebuilt module for commit 79d446136a
This commit is contained in:
parent
46d41ceb72
commit
9343567de7
5 changed files with 16 additions and 16 deletions
8
dist/docs/assets/js/paper.js
vendored
8
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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;
|
through = to;
|
||||||
to = Point.read(arguments);
|
to = Point.read(arguments);
|
||||||
} else {
|
} else {
|
||||||
var radius = Size.read(arguments);
|
var radius = Size.read(arguments),
|
||||||
if (Numerical.isZero(radius.width)
|
isZero = Numerical.isZero;
|
||||||
|| Numerical.isZero(radius.height))
|
if (isZero(radius.width) || isZero(radius.height))
|
||||||
return this.lineTo(to);
|
return this.lineTo(to);
|
||||||
var rotation = Base.read(arguments),
|
var rotation = Base.read(arguments),
|
||||||
clockwise = !!Base.read(arguments),
|
clockwise = !!Base.read(arguments),
|
||||||
|
|
8
dist/paper-core.js
vendored
8
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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;
|
through = to;
|
||||||
to = Point.read(arguments);
|
to = Point.read(arguments);
|
||||||
} else {
|
} else {
|
||||||
var radius = Size.read(arguments);
|
var radius = Size.read(arguments),
|
||||||
if (Numerical.isZero(radius.width)
|
isZero = Numerical.isZero;
|
||||||
|| Numerical.isZero(radius.height))
|
if (isZero(radius.width) || isZero(radius.height))
|
||||||
return this.lineTo(to);
|
return this.lineTo(to);
|
||||||
var rotation = Base.read(arguments),
|
var rotation = Base.read(arguments),
|
||||||
clockwise = !!Base.read(arguments),
|
clockwise = !!Base.read(arguments),
|
||||||
|
|
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
8
dist/paper-full.js
vendored
8
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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;
|
through = to;
|
||||||
to = Point.read(arguments);
|
to = Point.read(arguments);
|
||||||
} else {
|
} else {
|
||||||
var radius = Size.read(arguments);
|
var radius = Size.read(arguments),
|
||||||
if (Numerical.isZero(radius.width)
|
isZero = Numerical.isZero;
|
||||||
|| Numerical.isZero(radius.height))
|
if (isZero(radius.width) || isZero(radius.height))
|
||||||
return this.lineTo(to);
|
return this.lineTo(to);
|
||||||
var rotation = Base.read(arguments),
|
var rotation = Base.read(arguments),
|
||||||
clockwise = !!Base.read(arguments),
|
clockwise = !!Base.read(arguments),
|
||||||
|
|
4
dist/paper-full.min.js
vendored
4
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue