Prebuilt module for commit e2bc83af5d

This commit is contained in:
Paper.js Bot 2016-02-12 19:23:50 +00:00
parent 05781d8ff7
commit c5bd4404af
5 changed files with 19 additions and 13 deletions

View file

@ -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
View file

@ -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;

File diff suppressed because one or more lines are too long

8
dist/paper-full.js vendored
View file

@ -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;

File diff suppressed because one or more lines are too long