mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Prebuilt module for commit e2bc83af5d
This commit is contained in:
parent
05781d8ff7
commit
c5bd4404af
5 changed files with 19 additions and 13 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: Fri Feb 12 20:10:21 2016 +0100
|
||||
* Date: Fri Feb 12 20:19:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6345,8 +6345,10 @@ new function() {
|
|||
ay = p2y - p1y - cy - by,
|
||||
x, y;
|
||||
if (type === 0) {
|
||||
x = t === 1 ? p2x : ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 1 ? p2y : ((ay * t + by) * t + cy) * t + p1y;
|
||||
x = t === 0 ? p1x : t === 1 ? p2x
|
||||
: ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 0 ? p1y : t === 1 ? p2y
|
||||
: ((ay * t + by) * t + cy) * t + p1y;
|
||||
} else {
|
||||
var tMin = 4e-7,
|
||||
tMax = 1 - tMin;
|
||||
|
|
8
dist/paper-core.js
vendored
8
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Feb 12 20:10:21 2016 +0100
|
||||
* Date: Fri Feb 12 20:19:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6345,8 +6345,10 @@ new function() {
|
|||
ay = p2y - p1y - cy - by,
|
||||
x, y;
|
||||
if (type === 0) {
|
||||
x = t === 1 ? p2x : ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 1 ? p2y : ((ay * t + by) * t + cy) * t + p1y;
|
||||
x = t === 0 ? p1x : t === 1 ? p2x
|
||||
: ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 0 ? p1y : t === 1 ? p2y
|
||||
: ((ay * t + by) * t + cy) * t + p1y;
|
||||
} else {
|
||||
var tMin = 4e-7,
|
||||
tMax = 1 - tMin;
|
||||
|
|
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.
|
||||
*
|
||||
* Date: Fri Feb 12 20:10:21 2016 +0100
|
||||
* Date: Fri Feb 12 20:19:40 2016 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -6345,8 +6345,10 @@ new function() {
|
|||
ay = p2y - p1y - cy - by,
|
||||
x, y;
|
||||
if (type === 0) {
|
||||
x = t === 1 ? p2x : ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 1 ? p2y : ((ay * t + by) * t + cy) * t + p1y;
|
||||
x = t === 0 ? p1x : t === 1 ? p2x
|
||||
: ((ax * t + bx) * t + cx) * t + p1x;
|
||||
y = t === 0 ? p1y : t === 1 ? p2y
|
||||
: ((ay * t + by) * t + cy) * t + p1y;
|
||||
} else {
|
||||
var tMin = 4e-7,
|
||||
tMax = 1 - tMin;
|
||||
|
|
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