mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Prebuilt module for commit add28666cf
This commit is contained in:
parent
a1d304538e
commit
6ce1c3ccf9
5 changed files with 28 additions and 22 deletions
8
dist/docs/assets/js/paper.js
vendored
8
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Feb 14 13:49:40 2016 +0100
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6310,7 +6310,8 @@ statics: {
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -7407,7 +7408,8 @@ var PathItem = Item.extend({
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
},
|
||||
|
||||
interpolate: function(from, to, factor) {
|
||||
|
|
8
dist/paper-core.js
vendored
8
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Feb 14 13:49:40 2016 +0100
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6310,7 +6310,8 @@ statics: {
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -7407,7 +7408,8 @@ var PathItem = Item.extend({
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
},
|
||||
|
||||
interpolate: function(from, to, factor) {
|
||||
|
|
12
dist/paper-core.min.js
vendored
12
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.
|
||||
*
|
||||
* Date: Sun Feb 14 13:49:40 2016 +0100
|
||||
* Date: Mon Jan 11 15:54:07 2016 +0500
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6310,7 +6310,8 @@ statics: {
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -7407,7 +7408,8 @@ var PathItem = Item.extend({
|
|||
},
|
||||
|
||||
getNearestPoint: function() {
|
||||
return this.getNearestLocation.apply(this, arguments).getPoint();
|
||||
var loc = this.getNearestLocation.apply(this, arguments);
|
||||
return loc ? loc.getPoint() : loc;
|
||||
},
|
||||
|
||||
interpolate: function(from, to, factor) {
|
||||
|
|
14
dist/paper-full.min.js
vendored
14
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue