mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Prebuilt module for commit 7dd110f5b2
This commit is contained in:
parent
f76d45ce3a
commit
5447e9848b
5 changed files with 17 additions and 26 deletions
11
dist/docs/assets/js/paper.js
vendored
11
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 26 16:31:50 2016 +0100
|
||||
* Date: Fri Feb 26 17:49:44 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6168,12 +6168,9 @@ statics: {
|
|||
c1x = v[2], c1y = v[3],
|
||||
c2x = v[4], c2y = v[5],
|
||||
p2x = v[6], p2y = v[7];
|
||||
return (3.0 * c1y * p1x - 1.5 * c1y * c2x
|
||||
- 1.5 * c1y * p2x - 3.0 * p1y * c1x
|
||||
- 1.5 * p1y * c2x - 0.5 * p1y * p2x
|
||||
+ 1.5 * c2y * p1x + 1.5 * c2y * c1x
|
||||
- 3.0 * c2y * p2x + 0.5 * p2y * p1x
|
||||
+ 1.5 * p2y * c1x + 3.0 * p2y * c2x) / 10;
|
||||
return (6 * (p1x*c1y-p1y*c1x+c2x*p2y-p2x*c2y) +
|
||||
3 * (c1x*p2y-c1y*p2x+p1x*c2y-c2x*p1y+c1x*c2y-c1y*c2x) +
|
||||
1 * (p1x*p2y-p1y*p2x)) / 20;
|
||||
},
|
||||
|
||||
getBounds: function(v) {
|
||||
|
|
11
dist/paper-core.js
vendored
11
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 26 16:31:50 2016 +0100
|
||||
* Date: Fri Feb 26 17:49:44 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6168,12 +6168,9 @@ statics: {
|
|||
c1x = v[2], c1y = v[3],
|
||||
c2x = v[4], c2y = v[5],
|
||||
p2x = v[6], p2y = v[7];
|
||||
return (3.0 * c1y * p1x - 1.5 * c1y * c2x
|
||||
- 1.5 * c1y * p2x - 3.0 * p1y * c1x
|
||||
- 1.5 * p1y * c2x - 0.5 * p1y * p2x
|
||||
+ 1.5 * c2y * p1x + 1.5 * c2y * c1x
|
||||
- 3.0 * c2y * p2x + 0.5 * p2y * p1x
|
||||
+ 1.5 * p2y * c1x + 3.0 * p2y * c2x) / 10;
|
||||
return (6 * (p1x*c1y-p1y*c1x+c2x*p2y-p2x*c2y) +
|
||||
3 * (c1x*p2y-c1y*p2x+p1x*c2y-c2x*p1y+c1x*c2y-c1y*c2x) +
|
||||
1 * (p1x*p2y-p1y*p2x)) / 20;
|
||||
},
|
||||
|
||||
getBounds: function(v) {
|
||||
|
|
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
11
dist/paper-full.js
vendored
11
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 26 16:31:50 2016 +0100
|
||||
* Date: Fri Feb 26 17:49:44 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6168,12 +6168,9 @@ statics: {
|
|||
c1x = v[2], c1y = v[3],
|
||||
c2x = v[4], c2y = v[5],
|
||||
p2x = v[6], p2y = v[7];
|
||||
return (3.0 * c1y * p1x - 1.5 * c1y * c2x
|
||||
- 1.5 * c1y * p2x - 3.0 * p1y * c1x
|
||||
- 1.5 * p1y * c2x - 0.5 * p1y * p2x
|
||||
+ 1.5 * c2y * p1x + 1.5 * c2y * c1x
|
||||
- 3.0 * c2y * p2x + 0.5 * p2y * p1x
|
||||
+ 1.5 * p2y * c1x + 3.0 * p2y * c2x) / 10;
|
||||
return (6 * (p1x*c1y-p1y*c1x+c2x*p2y-p2x*c2y) +
|
||||
3 * (c1x*p2y-c1y*p2x+p1x*c2y-c2x*p1y+c1x*c2y-c1y*c2x) +
|
||||
1 * (p1x*p2y-p1y*p2x)) / 20;
|
||||
},
|
||||
|
||||
getBounds: function(v) {
|
||||
|
|
6
dist/paper-full.min.js
vendored
6
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue