Prebuilt module for commit 1fad295600

This commit is contained in:
Paper.js Bot 2017-03-07 11:58:38 +00:00
parent a0a1ddb3d7
commit a80ef1f8b8
5 changed files with 27 additions and 18 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Mar 7 11:45:13 2017 +0100
* Date: Tue Mar 7 12:34:59 2017 +0100
*
***
*
@ -1404,7 +1404,8 @@ var Point = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.x) && Numerical.isZero(this.y);
var isZero = Numerical.isZero;
return isZero(this.x) && isZero(this.y);
},
isNaN: function() {
@ -1621,7 +1622,8 @@ var Size = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.width) && Numerical.isZero(this.height);
var isZero = Numerical.isZero;
return isZero(this.width) && isZero(this.height);
},
isNaN: function() {
@ -5852,7 +5854,8 @@ var SegmentPoint = Point.extend({
},
isZero: function() {
return Numerical.isZero(this._x) && Numerical.isZero(this._y);
var isZero = Numerical.isZero;
return isZero(this._x) && isZero(this._y);
},
isSelected: function() {

11
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Mar 7 11:45:13 2017 +0100
* Date: Tue Mar 7 12:34:59 2017 +0100
*
***
*
@ -1404,7 +1404,8 @@ var Point = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.x) && Numerical.isZero(this.y);
var isZero = Numerical.isZero;
return isZero(this.x) && isZero(this.y);
},
isNaN: function() {
@ -1621,7 +1622,8 @@ var Size = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.width) && Numerical.isZero(this.height);
var isZero = Numerical.isZero;
return isZero(this.width) && isZero(this.height);
},
isNaN: function() {
@ -5852,7 +5854,8 @@ var SegmentPoint = Point.extend({
},
isZero: function() {
return Numerical.isZero(this._x) && Numerical.isZero(this._y);
var isZero = Numerical.isZero;
return isZero(this._x) && isZero(this._y);
},
isSelected: function() {

File diff suppressed because one or more lines are too long

11
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Mar 7 11:45:13 2017 +0100
* Date: Tue Mar 7 12:34:59 2017 +0100
*
***
*
@ -1404,7 +1404,8 @@ var Point = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.x) && Numerical.isZero(this.y);
var isZero = Numerical.isZero;
return isZero(this.x) && isZero(this.y);
},
isNaN: function() {
@ -1621,7 +1622,8 @@ var Size = Base.extend({
},
isZero: function() {
return Numerical.isZero(this.width) && Numerical.isZero(this.height);
var isZero = Numerical.isZero;
return isZero(this.width) && isZero(this.height);
},
isNaN: function() {
@ -5852,7 +5854,8 @@ var SegmentPoint = Point.extend({
},
isZero: function() {
return Numerical.isZero(this._x) && Numerical.isZero(this._y);
var isZero = Numerical.isZero;
return isZero(this._x) && isZero(this._y);
},
isSelected: function() {

File diff suppressed because one or more lines are too long