2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-11 21:12:48 -04:00
|
|
|
var EPSILON = 10e-12;
|
2013-05-03 13:39:32 -04:00
|
|
|
var TOLERANCE = 10e-6;
|
2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-11 10:15:45 -04:00
|
|
|
/**
|
|
|
|
* This method is analogous to paperjs#PathItem.getIntersections
|
|
|
|
*/
|
2013-05-03 13:39:32 -04:00
|
|
|
function getIntersections2( path1, path2 ){
|
2013-05-11 10:15:45 -04:00
|
|
|
// First check the bounds of the two paths. If they don't intersect,
|
|
|
|
// we don't need to iterate through their curves.
|
|
|
|
if (!path1.getBounds().touches(path2.getBounds()))
|
|
|
|
return [];
|
|
|
|
var locations = [],
|
|
|
|
curves1 = path1.getCurves(),
|
|
|
|
curves2 = path2.getCurves(),
|
|
|
|
length2 = curves2.length,
|
|
|
|
values2 = [];
|
|
|
|
for (var i = 0; i < length2; i++)
|
|
|
|
values2[i] = curves2[i].getValues();
|
|
|
|
for (var i = 0, l = curves1.length; i < l; i++) {
|
|
|
|
var curve1 = curves1[i],
|
|
|
|
values1 = curve1.getValues();
|
|
|
|
for (var j = 0; j < length2; j++)
|
|
|
|
Curve.getIntersections2(values1, values2[j], curve1, curves2[j],
|
|
|
|
locations);
|
|
|
|
}
|
2013-05-03 13:39:32 -04:00
|
|
|
return locations;
|
2013-04-28 12:22:09 -04:00
|
|
|
}
|
|
|
|
|
2013-05-11 08:25:42 -04:00
|
|
|
/**
|
|
|
|
* This method is analogous to paperjs#Curve.getIntersections
|
|
|
|
* @param {[type]} v1
|
|
|
|
* @param {[type]} v2
|
|
|
|
* @param {[type]} curve1
|
|
|
|
* @param {[type]} curve2
|
|
|
|
* @param {[type]} locations
|
|
|
|
* @param {[type]} _v1t - Only used for recusion
|
|
|
|
* @param {[type]} _v2t - Only used for recusion
|
|
|
|
*/
|
2013-05-10 14:46:07 -04:00
|
|
|
paper.Curve.getIntersections2 = function( v1, v2, curve1, curve2, locations, _v1t, _v2t ) {
|
|
|
|
// cache the original parameter range.
|
|
|
|
_v1t = _v1t || { t1: 0, t2: 1 };
|
|
|
|
_v2t = _v2t || { t1: 0, t2: 1 };
|
|
|
|
var v1t = { t1: _v1t.t1, t2: _v1t.t2 };
|
|
|
|
var v2t = { t1: _v2t.t1, t2: _v2t.t2 };
|
|
|
|
// Get the clipped parts from the original curve, to avoid cumulative errors
|
|
|
|
var _v1 = Curve.getPart( v1, v1t.t1, v1t.t2 );
|
|
|
|
var _v2 = Curve.getPart( v2, v2t.t1, v2t.t2 );
|
2013-05-10 19:44:21 -04:00
|
|
|
// markCurve( _v1, '#f0f', true );
|
|
|
|
// markCurve( _v2, '#0ff', false );
|
2013-05-11 21:12:48 -04:00
|
|
|
// Handle special cases where one or both curves are actually lines
|
|
|
|
var v1Linear = Curve.isLinear(v1);
|
|
|
|
var v2Linear = Curve.isLinear(v2);
|
|
|
|
if( v1Linear && v2Linear ){
|
|
|
|
var point = Line.intersect(
|
|
|
|
_v1[0], _v1[1], _v1[6], _v1[7],
|
|
|
|
_v2[0], _v2[1], _v2[6], _v2[7], false);
|
|
|
|
if (point) {
|
|
|
|
// point = new Point( point );
|
|
|
|
// Avoid duplicates when hitting segments (closed paths too)
|
|
|
|
var first = locations[0],
|
|
|
|
last = locations[locations.length - 1];
|
|
|
|
if ((!first || !point.equals(first._point))
|
|
|
|
&& (!last || !point.equals(last._point)))
|
|
|
|
// Passing null for parameter leads to lazy determination
|
|
|
|
// of parameter values in CurveLocation#getParameter()
|
|
|
|
// only once they are requested.
|
|
|
|
locations.push(new CurveLocation(curve1, null, point, curve2));
|
|
|
|
}
|
|
|
|
// This method can find only one intersection at a time and we just found it.
|
|
|
|
return;
|
|
|
|
} else if( v1Linear || v2Linear ) {
|
|
|
|
// if only one of the curves are linear we just use the binary subdivision for now!
|
|
|
|
Curve.getIntersections( v1, v2, curve1, curve2, locations );
|
|
|
|
return;
|
|
|
|
}
|
2013-05-10 14:46:07 -04:00
|
|
|
var nuT, parts, tmpt = { t1:null, t2:null };
|
2013-05-10 19:44:21 -04:00
|
|
|
// Loop until both parameter range converge. We have to handle the degenerate case
|
2013-05-10 14:46:07 -04:00
|
|
|
// seperately, where fat-line clipping can become numerically unstable when one of the
|
|
|
|
// curves has converged to a point and the other hasn't.
|
2013-05-11 08:15:38 -04:00
|
|
|
while( Math.abs(v1t.t2 - v1t.t1) > TOLERANCE || Math.abs(v2t.t2 - v2t.t1) > TOLERANCE ){
|
2013-05-10 14:46:07 -04:00
|
|
|
// First we clip v2 with v1's fat-line
|
|
|
|
tmpt.t1 = v2t.t1; tmpt.t2 = v2t.t2;
|
|
|
|
var intersects1 = _clipBezierFatLine( _v1, _v2, tmpt );
|
|
|
|
// Stop if there are no possible intersections
|
|
|
|
if( intersects1 === 0 ){
|
|
|
|
return;
|
|
|
|
} else if( intersects1 > 0 ){
|
|
|
|
// Get the clipped parts from the original v2, to avoid cumulative errors
|
2013-05-11 08:15:38 -04:00
|
|
|
// ...and reuse some objects.
|
2013-05-10 14:46:07 -04:00
|
|
|
v2t.t1 = tmpt.t1; v2t.t2 = tmpt.t2;
|
|
|
|
_v2 = Curve.getPart( v2, v2t.t1, v2t.t2 );
|
|
|
|
}
|
2013-05-10 19:44:21 -04:00
|
|
|
// markCurve( _v2, '#0ff', false );
|
2013-05-10 14:46:07 -04:00
|
|
|
// Next we clip v1 with nuv2's fat-line
|
|
|
|
tmpt.t1 = v1t.t1; tmpt.t2 = v1t.t2;
|
|
|
|
var intersects2 = _clipBezierFatLine( _v2, _v1, tmpt );
|
|
|
|
// Stop if there are no possible intersections
|
|
|
|
if( intersects2 === 0 ){
|
|
|
|
return;
|
|
|
|
}else if( intersects1 > 0 ){
|
|
|
|
// Get the clipped parts from the original v2, to avoid cumulative errors
|
|
|
|
v1t.t1 = tmpt.t1; v1t.t2 = tmpt.t2;
|
|
|
|
_v1 = Curve.getPart( v1, v1t.t1, v1t.t2 );
|
2013-05-09 08:37:16 -04:00
|
|
|
}
|
2013-05-10 19:44:21 -04:00
|
|
|
// markCurve( _v1, '#f0f', true );
|
2013-05-10 14:46:07 -04:00
|
|
|
// Get the clipped parts from the original v1
|
|
|
|
// Check if there could be multiple intersections
|
|
|
|
if( intersects1 < 0 || intersects2 < 0 ){
|
|
|
|
// Subdivide the curve which has converged the least from the original range [0,1],
|
|
|
|
// which would be the curve with the largest parameter range after clipping
|
|
|
|
if( v1t.t2 - v1t.t1 > v2t.t2 - v2t.t1 ){
|
|
|
|
// subdivide _v1 and recurse
|
|
|
|
nuT = ( _v1t.t1 + _v1t.t2 ) / 2.0;
|
|
|
|
Curve.getIntersections2( v1, v2, curve1, curve2, locations, { t1: _v1t.t1, t2: nuT }, _v2t );
|
|
|
|
Curve.getIntersections2( v1, v2, curve1, curve2, locations, { t1: nuT, t2: _v1t.t2 }, _v2t );
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// subdivide _v2 and recurse
|
|
|
|
nuT = ( _v2t.t1 + _v2t.t2 ) / 2.0;
|
|
|
|
Curve.getIntersections2( v1, v2, curve1, curve2, locations, _v1t, { t1: _v2t.t1, t2: nuT } );
|
|
|
|
Curve.getIntersections2( v1, v2, curve1, curve2, locations, _v1t, { t1: nuT, t2: _v2t.t2 } );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-05-11 21:12:48 -04:00
|
|
|
// Check if one of the parameter range has converged completely. Now things could get only worse
|
|
|
|
// if we iterate more for the other curve to converge if it hasn't yet happened so.
|
|
|
|
if( Math.abs(v1t.t2 - v1t.t1) < EPSILON ){
|
|
|
|
locations.push(new CurveLocation(curve1, v1t.t1, curve1.getPoint(v1t.t1), curve2));
|
|
|
|
return;
|
|
|
|
}else if( Math.abs(v2t.t2 - v2t.t1) < EPSILON ){
|
|
|
|
locations.push(new CurveLocation(curve1, null, curve2.getPoint(v1t.t1), curve2));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Check to see if either parameter ranges have converged or else,
|
2013-05-10 14:46:07 -04:00
|
|
|
// see if both curves are flat enough to be treated as lines, either
|
|
|
|
// because they have no control points at all, or are "flat enough"
|
|
|
|
// If the curve was flat in a previous iteration, we don't need to
|
|
|
|
// recalculate since it does not need further subdivision then.
|
2013-05-11 21:12:48 -04:00
|
|
|
if( Math.abs(v1t.t2 - v1t.t1) <= TOLERANCE || Math.abs(v2t.t2 - v2t.t1) <= TOLERANCE ){
|
|
|
|
locations.push(new CurveLocation(curve1, v1t.t1, curve1.getPoint(v1t.t1), curve2));
|
2013-05-10 14:46:07 -04:00
|
|
|
return;
|
2013-05-05 06:15:18 -04:00
|
|
|
} else {
|
2013-05-10 14:46:07 -04:00
|
|
|
//!code from: paperjs#Curve.getIntersections method
|
2013-05-11 21:12:48 -04:00
|
|
|
if (Curve.isFlatEnough(v1, /*#=*/ TOLERANCE)
|
|
|
|
&& Curve.isFlatEnough(v2, /*#=*/ TOLERANCE)) {
|
2013-05-10 18:47:52 -04:00
|
|
|
var point = Line.intersect(
|
|
|
|
_v1[0], _v1[1], _v1[6], _v1[7],
|
|
|
|
_v2[0], _v2[1], _v2[6], _v2[7], false);
|
2013-05-10 14:46:07 -04:00
|
|
|
if (point) {
|
2013-05-10 18:47:52 -04:00
|
|
|
// point = new Point( point );
|
2013-05-10 14:46:07 -04:00
|
|
|
// Avoid duplicates when hitting segments (closed paths too)
|
|
|
|
var first = locations[0],
|
|
|
|
last = locations[locations.length - 1];
|
|
|
|
if ((!first || !point.equals(first._point))
|
|
|
|
&& (!last || !point.equals(last._point)))
|
|
|
|
// Passing null for parameter leads to lazy determination
|
|
|
|
// of parameter values in CurveLocation#getParameter()
|
|
|
|
// only once they are requested.
|
|
|
|
locations.push(new CurveLocation(curve1, null, point, curve2));
|
|
|
|
}
|
2013-05-11 21:12:48 -04:00
|
|
|
// This method can find only one intersection at a time and we just found it.
|
|
|
|
return;
|
2013-05-10 14:46:07 -04:00
|
|
|
}
|
2013-05-05 06:15:18 -04:00
|
|
|
}
|
|
|
|
}
|
2013-04-28 12:22:09 -04:00
|
|
|
};
|
|
|
|
|
2013-05-05 07:38:56 -04:00
|
|
|
/**
|
2013-05-10 14:46:07 -04:00
|
|
|
* Clip curve V2 with fat-line of v1
|
|
|
|
* @param {Array} v1 - Section of the first curve, for which we will make a fat-line
|
|
|
|
* @param {Array} v2 - Section of the second curve; we will clip this curve with the fat-line of v1
|
|
|
|
* @param {Object} v2t - The parameter range of v2
|
|
|
|
* @return {number} -> 0 -no Intersection, 1 -one intersection, -1 -more than one intersection
|
2013-05-05 07:38:56 -04:00
|
|
|
*/
|
2013-05-10 14:46:07 -04:00
|
|
|
function _clipBezierFatLine( v1, v2, v2t ){
|
2013-05-10 19:44:21 -04:00
|
|
|
// first curve, P
|
|
|
|
var p0x = v1[0], p0y = v1[1], p3x = v1[6], p3y = v1[7];
|
|
|
|
var p1x = v1[2], p1y = v1[3], p2x = v1[4], p2y = v1[5];
|
|
|
|
// second curve, Q
|
|
|
|
var q0x = v2[0], q0y = v2[1], q3x = v2[6], q3y = v2[7];
|
|
|
|
var q1x = v2[2], q1y = v2[3], q2x = v2[4], q2y = v2[5];
|
|
|
|
// Calculate the fat-line L for P is the baseline l and two
|
|
|
|
// offsets which completely encloses the curve P.
|
2013-05-11 21:12:48 -04:00
|
|
|
var d1 = _getSignedDist( p0x, p0y, p3x, p3y, p1x, p1y ) || 0;
|
|
|
|
var d2 = _getSignedDist( p0x, p0y, p3x, p3y, p2x, p2y ) || 0;
|
2013-05-10 14:46:07 -04:00
|
|
|
var dmin, dmax;
|
|
|
|
if( d1 * d2 > 0){
|
|
|
|
// 3/4 * min{0, d1, d2}
|
|
|
|
dmin = 0.75 * Math.min( 0, d1, d2 );
|
|
|
|
dmax = 0.75 * Math.max( 0, d1, d2 );
|
|
|
|
} else {
|
|
|
|
// 4/9 * min{0, d1, d2}
|
2013-05-10 18:47:52 -04:00
|
|
|
dmin = 0.4444444444444444 * Math.min( 0, d1, d2 );
|
|
|
|
dmax = 0.4444444444444444 * Math.max( 0, d1, d2 );
|
2013-05-10 14:46:07 -04:00
|
|
|
}
|
2013-05-10 19:44:21 -04:00
|
|
|
// Calculate non-parametric bezier curve D(ti, di(t)) -
|
|
|
|
// di(t) is the distance of Q from the baseline l of the fat-line,
|
|
|
|
// ti is equally spaced in [0,1]
|
2013-05-10 14:46:07 -04:00
|
|
|
var dq0 = _getSignedDist( p0x, p0y, p3x, p3y, q0x, q0y );
|
|
|
|
var dq1 = _getSignedDist( p0x, p0y, p3x, p3y, q1x, q1y );
|
|
|
|
var dq2 = _getSignedDist( p0x, p0y, p3x, p3y, q2x, q2y );
|
|
|
|
var dq3 = _getSignedDist( p0x, p0y, p3x, p3y, q3x, q3y );
|
2013-05-10 19:44:21 -04:00
|
|
|
// Find the minimum and maximum distances from l,
|
|
|
|
// this is useful for checking whether the curves intersect with each other or not.
|
2013-05-10 18:47:52 -04:00
|
|
|
var mindist = Math.min( dq0, dq1, dq2, dq3 );
|
|
|
|
var maxdist = Math.max( dq0, dq1, dq2, dq3 );
|
|
|
|
// If the fatlines don't overlap, we have no intersections!
|
|
|
|
if( dmin > maxdist || dmax < mindist ){
|
|
|
|
return 0;
|
2013-05-11 21:12:48 -04:00
|
|
|
// } else {
|
|
|
|
// // Calculate the alternate fatline and check if the curves overlap
|
|
|
|
// // The alternate fatline is perpendicular to line [p0, p3] and passes through p0
|
|
|
|
// // this fatline extends d1 and d2 from point p0
|
|
|
|
// var pvx = p3y - p0y, pvy = p3x - p0x;
|
|
|
|
// var len = Math.sqrt( pvx*pvx + pvy*pvy ), scale1 = d1/len, scale2 = d2/len;
|
|
|
|
// var pv1x = p0x + pvx * scale1, pv1y = p0y + pvy * scale1;
|
|
|
|
// var pv2x = p0x + pvx * scale2, pv2y = p0y + pvy * scale2;
|
|
|
|
// var pdmin = 0;
|
|
|
|
// var pdmax = _getSignedDist( pv1x, pv1y, pv2x, pv2y, p3x, p3y );
|
|
|
|
// // Calculate the distance of Q from the perpendicular fatline
|
|
|
|
// var pdq0 = _getSignedDist( pv1x, pv1y, pv2x, pv2y, q0x, q0y );
|
|
|
|
// var pdq1 = _getSignedDist( pv1x, pv1y, pv2x, pv2y, q1x, q1y );
|
|
|
|
// var pdq2 = _getSignedDist( pv1x, pv1y, pv2x, pv2y, q2x, q2y );
|
|
|
|
// var pdq3 = _getSignedDist( pv1x, pv1y, pv2x, pv2y, q3x, q3y );
|
|
|
|
// // Find the minimum and maximum distances from l,
|
|
|
|
// // this is useful for checking whether the curves intersect with each other or not.
|
|
|
|
// var mindist = Math.min( pdq0, pdq1, pdq2, pdq3 );
|
|
|
|
// var maxdist = Math.max( pdq0, pdq1, pdq2, pdq3 );
|
|
|
|
// if( pdmin > maxdist || pdmax < mindist ){
|
|
|
|
// return 0;
|
|
|
|
// }
|
2013-05-10 14:46:07 -04:00
|
|
|
}
|
|
|
|
// Calculate the convex hull for non-parametric bezier curve D(ti, di(t))
|
|
|
|
var Dt = _convexhull( dq0, dq1, dq2, dq3 );
|
|
|
|
// Now we clip the convex hulls for D(ti, di(t)) with dmin and dmax
|
|
|
|
// for the coorresponding t values (tmin, tmax):
|
|
|
|
// Portions of curve v2 before tmin and after tmax can safely be clipped away
|
2013-05-10 18:47:52 -04:00
|
|
|
// TODO: try to calculate tmin and tmax directly here
|
2013-05-10 14:46:07 -04:00
|
|
|
var tmindmin = Infinity, tmaxdmin = -Infinity,
|
|
|
|
tmindmax = Infinity, tmaxdmax = -Infinity, ixd, ixdx, i, len;
|
2013-05-10 19:44:21 -04:00
|
|
|
// var dmina = [0, dmin, 2, dmin];
|
|
|
|
// var dmaxa = [0, dmax, 2, dmax];
|
2013-05-10 14:46:07 -04:00
|
|
|
for (i = 0, len = Dt.length; i < len; i++) {
|
|
|
|
var Dtl = Dt[i];
|
2013-05-10 19:44:21 -04:00
|
|
|
// ixd = _intersectLines( Dtl, dmina);
|
2013-05-11 08:15:38 -04:00
|
|
|
// TODO: Optimize: Avaoid creating point objects in Line.intersect?!
|
|
|
|
// speeds up by 30%!
|
2013-05-10 19:44:21 -04:00
|
|
|
ixd = Line.intersect( Dtl[0], Dtl[1], Dtl[2], Dtl[3], 0, dmin, 2, dmin, false);
|
2013-05-10 14:46:07 -04:00
|
|
|
if( ixd ){
|
2013-05-10 19:44:21 -04:00
|
|
|
ixdx = ixd.x;
|
2013-05-10 14:46:07 -04:00
|
|
|
tmindmin = ( ixdx < tmindmin )? ixdx : tmindmin;
|
|
|
|
tmaxdmin = ( ixdx > tmaxdmin )? ixdx : tmaxdmin;
|
|
|
|
}
|
2013-05-10 19:44:21 -04:00
|
|
|
// ixd = _intersectLines( Dtl, dmaxa);
|
|
|
|
ixd = Line.intersect( Dtl[0], Dtl[1], Dtl[2], Dtl[3], 0, dmax, 2, dmax, false);
|
2013-05-10 14:46:07 -04:00
|
|
|
if( ixd ){
|
2013-05-10 19:44:21 -04:00
|
|
|
ixdx = ixd.x;
|
2013-05-10 14:46:07 -04:00
|
|
|
tmindmax = ( ixdx < tmindmax )? ixdx : tmindmax;
|
|
|
|
tmaxdmax = ( ixdx > tmaxdmax )? ixdx : tmaxdmax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Return the parameter values for v2 for which we can be sure that the
|
|
|
|
// intersection with v1 lies within.
|
2013-05-10 18:47:52 -04:00
|
|
|
var tmin, tmax;
|
|
|
|
if( dq3 > dq0 ){
|
2013-05-11 21:12:48 -04:00
|
|
|
// if dmin doesnot intersect with the convexhull, reset the parameter limits to 0
|
|
|
|
tmindmin = ( tmindmin === Infinity )? 0 : tmindmin;
|
|
|
|
tmaxdmin = ( tmaxdmin === -Infinity )? 0 : tmaxdmin;
|
|
|
|
// if dmax doesnot intersect with the convexhull, reset the parameter limits to 1
|
|
|
|
tmindmax = ( tmindmax === Infinity )? 1 : tmindmax;
|
|
|
|
tmaxdmax = ( tmaxdmax === -Infinity )? 1 : tmaxdmax;
|
2013-05-10 18:47:52 -04:00
|
|
|
tmin = Math.min( tmindmin, tmaxdmin );
|
|
|
|
tmax = Math.max( tmindmax, tmaxdmax );
|
|
|
|
if( Math.min( tmindmax, tmaxdmax ) < tmin )
|
|
|
|
tmin = 0;
|
|
|
|
if( Math.max( tmindmin, tmaxdmin ) > tmax )
|
|
|
|
tmax = 1;
|
|
|
|
}else{
|
2013-05-11 21:12:48 -04:00
|
|
|
// if dmin doesnot intersect with the convexhull, reset the parameter limits to 1
|
|
|
|
tmindmin = ( tmindmin === Infinity )? 1 : tmindmin;
|
|
|
|
tmaxdmin = ( tmaxdmin === -Infinity )? 1 : tmaxdmin;
|
|
|
|
// if dmax doesnot intersect with the convexhull, reset the parameter limits to 0
|
|
|
|
tmindmax = ( tmindmax === Infinity )? 0 : tmindmax;
|
|
|
|
tmaxdmax = ( tmaxdmax === -Infinity )? 0 : tmaxdmax;
|
2013-05-10 18:47:52 -04:00
|
|
|
tmax = Math.max( tmindmin, tmaxdmin );
|
|
|
|
tmin = Math.min( tmindmax, tmaxdmax );
|
|
|
|
if( Math.min( tmindmin, tmaxdmin ) < tmin )
|
|
|
|
tmin = 0;
|
|
|
|
if( Math.max( tmindmax, tmaxdmax ) > tmax )
|
|
|
|
tmax = 1;
|
|
|
|
}
|
2013-05-10 19:44:21 -04:00
|
|
|
// Debug: Plot the non-parametric graph and hull
|
|
|
|
// plotD_vs_t( 500, 110, Dt, [dq0, dq1, dq2, dq3], v1, dmin, dmax, tmin, tmax, 1.0 / ( tmax - tmin + 0.3 ) )
|
2013-05-11 21:12:48 -04:00
|
|
|
if( tmin === 0.0 && tmax === 1.0 ){
|
|
|
|
return 0;
|
|
|
|
}
|
2013-05-10 14:46:07 -04:00
|
|
|
// tmin and tmax are within the range (0, 1). We need to project it to the original
|
|
|
|
// parameter range for v2.
|
|
|
|
var v2tmin = v2t.t1;
|
|
|
|
var tdiff = ( v2t.t2 - v2tmin );
|
|
|
|
v2t.t1 = v2tmin + tmin * tdiff;
|
|
|
|
v2t.t2 = v2tmin + tmax * tdiff;
|
|
|
|
// If the new parameter range fails to converge by atleast 20% of the original range,
|
|
|
|
// possibly we have multiple intersections. We need to subdivide one of the curves.
|
|
|
|
if( (tdiff - ( v2t.t2 - v2t.t1 ))/tdiff < 0.2 ){
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 1;
|
2013-05-05 07:38:56 -04:00
|
|
|
}
|
|
|
|
|
2013-05-11 08:25:42 -04:00
|
|
|
/**
|
|
|
|
* Calculate the convex hull for the non-paramertic bezier curve D(ti, di(t)).
|
|
|
|
* The ti is equally spaced across [0..1] — [0, 1/3, 2/3, 1] for
|
|
|
|
* di(t), [dq0, dq1, dq2, dq3] respectively. In other words our CVs for the curve are
|
|
|
|
* already sorted in the X axis in the increasing order. Calculating convex-hull is
|
|
|
|
* much easier than a set of arbitrary points.
|
|
|
|
*/
|
2013-05-05 09:34:20 -04:00
|
|
|
function _convexhull( dq0, dq1, dq2, dq3 ){
|
|
|
|
var distq1 = _getSignedDist( 0.0, dq0, 1.0, dq3, 0.3333333333333333, dq1 );
|
|
|
|
var distq2 = _getSignedDist( 0.0, dq0, 1.0, dq3, 0.6666666666666666, dq2 );
|
|
|
|
// Check if [1/3, dq1] and [2/3, dq2] are on the same side of line [0,dq0, 1,dq3]
|
|
|
|
if( distq1 * distq2 < 0 ) {
|
|
|
|
// dq1 and dq2 lie on different sides on [0, q0, 1, q3]
|
2013-05-10 19:44:21 -04:00
|
|
|
// Convexhull is a quadrilateral and line [0, q0, 1, q3] is NOT part of the convexhull
|
2013-05-05 11:45:06 -04:00
|
|
|
// so we are pretty much done here.
|
2013-05-05 09:34:20 -04:00
|
|
|
Dt = [
|
|
|
|
[ 0.0, dq0, 0.3333333333333333, dq1 ],
|
|
|
|
[ 0.3333333333333333, dq1, 1.0, dq3 ],
|
|
|
|
[ 0.6666666666666666, dq2, 0.0, dq0 ],
|
|
|
|
[ 1.0, dq3, 0.6666666666666666, dq2 ]
|
|
|
|
];
|
|
|
|
} else {
|
2013-05-05 11:45:06 -04:00
|
|
|
// dq1 and dq2 lie on the same sides on [0, q0, 1, q3]
|
2013-05-10 19:44:21 -04:00
|
|
|
// Convexhull can be a triangle or a quadrilateral and
|
2013-05-05 11:45:06 -04:00
|
|
|
// line [0, q0, 1, q3] is part of the convexhull.
|
2013-05-10 19:44:21 -04:00
|
|
|
// Check if the hull is a triangle or a quadrilateral
|
2013-05-05 09:34:20 -04:00
|
|
|
var dqmin, dqmax, dqapex1, dqapex2;
|
|
|
|
distq1 = Math.abs(distq1);
|
|
|
|
distq2 = Math.abs(distq2);
|
2013-05-05 11:45:06 -04:00
|
|
|
var vqa1a2x, vqa1a2y, vqa1Maxx, vqa1Maxy, vqa1Minx, vqa1Miny;
|
2013-05-05 09:34:20 -04:00
|
|
|
if( distq1 > distq2 ){
|
2013-05-05 11:45:06 -04:00
|
|
|
dqmin = [ 0.6666666666666666, dq2 ];
|
|
|
|
dqmax = [ 0.3333333333333333, dq1 ];
|
|
|
|
// apex is dq3 and the other apex point is dq0
|
|
|
|
// vector dqapex->dqapex2 or the base vector which is already part of c-hull
|
|
|
|
vqa1a2x = 1.0, vqa1a2y = dq3 - dq0;
|
|
|
|
// vector dqapex->dqmax
|
|
|
|
vqa1Maxx = 0.6666666666666666, vqa1Maxy = dq3 - dq1;
|
|
|
|
// vector dqapex->dqmin
|
|
|
|
vqa1Minx = 0.3333333333333333, vqa1Miny = dq3 - dq2;
|
2013-05-05 09:34:20 -04:00
|
|
|
} else {
|
2013-05-05 11:45:06 -04:00
|
|
|
dqmin = [ 0.3333333333333333, dq1 ];
|
|
|
|
dqmax = [ 0.6666666666666666, dq2 ];
|
|
|
|
// apex is dq0 in this case, and the other apex point is dq3
|
|
|
|
// vector dqapex->dqapex2 or the base vector which is already part of c-hull
|
|
|
|
vqa1a2x = -1.0, vqa1a2y = dq0 - dq3;
|
|
|
|
// vector dqapex->dqmax
|
|
|
|
vqa1Maxx = -0.6666666666666666, vqa1Maxy = dq0 - dq2;
|
|
|
|
// vector dqapex->dqmin
|
|
|
|
vqa1Minx = -0.3333333333333333, vqa1Miny = dq0 - dq1;
|
2013-05-05 09:34:20 -04:00
|
|
|
}
|
|
|
|
// compare cross products of these vectors to determine, if
|
|
|
|
// point is in triangles [ dq3, dqMax, dq0 ] or [ dq0, dqMax, dq3 ]
|
|
|
|
var vcrossa1a2_a1Min = vqa1a2x * vqa1Miny - vqa1a2y * vqa1Minx;
|
|
|
|
var vcrossa1Max_a1Min = vqa1Maxx * vqa1Miny - vqa1Maxy * vqa1Minx;
|
|
|
|
if( vcrossa1Max_a1Min * vcrossa1a2_a1Min < 0 ){
|
2013-05-05 11:45:06 -04:00
|
|
|
// Point [2/3, dq2] is inside the triangle and the convex hull is a triangle
|
|
|
|
Dt = [
|
|
|
|
[ 0.0, dq0, dqmax[0], dqmax[1] ],
|
|
|
|
[ dqmax[0], dqmax[1], 1.0, dq3 ],
|
|
|
|
[ 1.0, dq3, 0.0, dq0 ]
|
|
|
|
];
|
2013-05-05 09:34:20 -04:00
|
|
|
} else {
|
2013-05-10 19:44:21 -04:00
|
|
|
// Convexhull is a quadrilateral and we need all lines in the correct order where
|
2013-05-05 11:45:06 -04:00
|
|
|
// line [0, q0, 1, q3] is part of the convex hull
|
|
|
|
Dt = [
|
|
|
|
[ 0.0, dq0, 0.3333333333333333, dq1 ],
|
|
|
|
[ 0.3333333333333333, dq1, 0.6666666666666666, dq2 ],
|
|
|
|
[ 0.6666666666666666, dq2, 1.0, dq3 ],
|
|
|
|
[ 1.0, dq3, 0.0, dq0 ]
|
|
|
|
];
|
2013-05-05 09:34:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Dt;
|
|
|
|
}
|
|
|
|
|
2013-05-05 07:38:56 -04:00
|
|
|
|
2013-04-28 12:22:09 -04:00
|
|
|
function drawFatline( v1 ) {
|
2013-05-10 19:44:21 -04:00
|
|
|
function signum(num) {
|
|
|
|
return ( num > 0 )? 1 : ( num < 0 )? -1 : 0;
|
|
|
|
}
|
2013-05-03 13:39:32 -04:00
|
|
|
var l = new Line( [v1[0], v1[1]], [v1[6], v1[7]], false );
|
|
|
|
var p1 = new Point( v1[2], v1[3] ), p2 = new Point( v1[4], v1[5] );
|
2013-05-11 21:12:48 -04:00
|
|
|
var d1 = l.getSide( p1 ) * l.getDistance( p1 ) || 0;
|
|
|
|
var d2 = l.getSide( p2 ) * l.getDistance( p2 ) || 0;
|
2013-05-03 13:39:32 -04:00
|
|
|
var dmin, dmax;
|
|
|
|
if( d1 * d2 > 0){
|
|
|
|
// 3/4 * min{0, d1, d2}
|
|
|
|
dmin = 0.75 * Math.min( 0, d1, d2 );
|
|
|
|
dmax = 0.75 * Math.max( 0, d1, d2 );
|
|
|
|
} else {
|
|
|
|
// 4/9 * min{0, d1, d2}
|
|
|
|
dmin = 4 * Math.min( 0, d1, d2 ) / 9.0;
|
|
|
|
dmax = 4 * Math.max( 0, d1, d2 ) / 9.0;
|
|
|
|
}
|
2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-03 13:39:32 -04:00
|
|
|
var ll = new Path.Line( v1[0], v1[1], v1[6], v1[7] );
|
2013-05-10 18:47:52 -04:00
|
|
|
window.__p3.push( ll );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = new Color( 0,0,0.9, 0.8);
|
2013-05-03 13:39:32 -04:00
|
|
|
var lp1 = ll.segments[0].point;
|
|
|
|
var lp2 = ll.segments[1].point;
|
|
|
|
var pm = l.vector, pm1 = pm.rotate( signum( dmin ) * -90 ), pm2 = pm.rotate( signum( dmax ) * -90 );
|
|
|
|
var p11 = lp1.add( pm1.normalize( Math.abs(dmin) ) );
|
|
|
|
var p12 = lp2.add( pm1.normalize( Math.abs(dmin) ) );
|
|
|
|
var p21 = lp1.add( pm2.normalize( Math.abs(dmax) ) );
|
|
|
|
var p22 = lp2.add( pm2.normalize( Math.abs(dmax) ) );
|
2013-05-10 18:47:52 -04:00
|
|
|
window.__p3.push( new Path.Line( p11, p12 ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = new Color( 0,0,0.9);
|
|
|
|
window.__p3.push( new Path.Line( p21, p22 ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = new Color( 0,0,0.9);
|
2013-04-28 12:22:09 -04:00
|
|
|
}
|
|
|
|
|
2013-05-10 18:47:52 -04:00
|
|
|
function plotD_vs_t( x, y, arr, arr2, v, dmin, dmax, tmin, tmax, yscale, tvalue ){
|
2013-05-03 13:39:32 -04:00
|
|
|
yscale = yscale || 1;
|
|
|
|
new Path.Line( x, y-100, x, y+100 ).style.strokeColor = '#aaa';
|
|
|
|
new Path.Line( x, y, x + 200, y ).style.strokeColor = '#aaa';
|
2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-03 13:39:32 -04:00
|
|
|
var clr = (tvalue)? '#a00' : '#00a';
|
2013-05-10 14:46:07 -04:00
|
|
|
if( window.__p3 ) window.__p3.map(function(a){a.remove();});
|
2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-10 14:46:07 -04:00
|
|
|
window.__p3 = [];
|
|
|
|
|
2013-05-10 18:47:52 -04:00
|
|
|
drawFatline( v );
|
|
|
|
|
2013-05-10 14:46:07 -04:00
|
|
|
window.__p3.push( new Path.Line( x, y + dmin * yscale, x + 200, y + dmin * yscale ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = '#000'
|
|
|
|
window.__p3.push( new Path.Line( x, y + dmax * yscale, x + 200, y + dmax * yscale ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = '#000'
|
|
|
|
window.__p3.push( new Path.Line( x + tmin * 190, y-100, x + tmin * 190, y+100 ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = clr
|
|
|
|
window.__p3.push( new Path.Line( x + tmax * 190, y-100, x + tmax * 190, y+100 ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = clr
|
2013-04-28 12:22:09 -04:00
|
|
|
|
2013-05-03 13:39:32 -04:00
|
|
|
for (var i = 0; i < arr.length; i++) {
|
2013-05-10 14:46:07 -04:00
|
|
|
window.__p3.push( new Path.Line( new Point( x + arr[i][0] * 190, y + arr[i][1] * yscale ),
|
|
|
|
new Point( x + arr[i][2] * 190, y + arr[i][3] * yscale ) ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = '#999';
|
|
|
|
}
|
|
|
|
var pnt = [];
|
|
|
|
var arr2x = [ 0.0, 0.333333333, 0.6666666666, 1.0 ];
|
|
|
|
for (var i = 0; i < arr2.length; i++) {
|
|
|
|
pnt.push( new Point( x + arr2x[i] * 190, y + arr2[i] * yscale ) );
|
2013-05-10 18:47:52 -04:00
|
|
|
window.__p3.push( new Path.Circle( pnt[pnt.length-1], 2 ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.fillColor = '#000'
|
2013-05-03 13:39:32 -04:00
|
|
|
}
|
2013-05-05 07:38:56 -04:00
|
|
|
// var pth = new Path( pnt[0], pnt[1], pnt[2], pnt[3] );
|
|
|
|
// pth.closed = true;
|
2013-05-10 14:46:07 -04:00
|
|
|
window.__p3.push( new Path( new Segment(pnt[0], null, pnt[1].subtract(pnt[0])), new Segment( pnt[3], pnt[2].subtract(pnt[3]), null ) ) );
|
|
|
|
window.__p3[window.__p3.length-1].style.strokeColor = clr
|
|
|
|
view.draw();
|
2013-04-28 12:22:09 -04:00
|
|
|
}
|
|
|
|
|
2013-05-10 19:44:21 -04:00
|
|
|
// This is basically an "unrolled" version of two methods from paperjs'
|
|
|
|
// Line class —#Line.getSide() and #Line.getDistance()
|
|
|
|
// If we create Point and Line objects, the code slows down significantly!
|
|
|
|
// May be a static method could be better!
|
2013-05-03 16:23:00 -04:00
|
|
|
var _getSignedDist = function( a1x, a1y, a2x, a2y, bx, by ){
|
|
|
|
var vx = a2x - a1x, vy = a2y - a1y;
|
|
|
|
var bax = bx - a1x, bay = by - a1y;
|
|
|
|
var ba2x = bx - a2x, ba2y = by - a2y;
|
2013-05-05 07:38:56 -04:00
|
|
|
// ba *cross* v
|
2013-05-03 16:23:00 -04:00
|
|
|
var cvb = bax * vy - bay * vx;
|
|
|
|
if (cvb === 0) {
|
|
|
|
cvb = bax * vx + bay * vy;
|
|
|
|
if (cvb > 0) {
|
|
|
|
cvb = (bax - vx) * vx + (bay -vy) * vy;
|
|
|
|
if (cvb < 0){ cvb = 0; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var side = cvb < 0 ? -1 : cvb > 0 ? 1 : 0;
|
|
|
|
// Calculate the distance
|
|
|
|
var m = vy / vx, b = a1y - ( m * a1x );
|
|
|
|
var dist = Math.abs( by - ( m * bx ) - b ) / Math.sqrt( m*m + 1 );
|
|
|
|
var dista1 = Math.sqrt( bax * bax + bay * bay );
|
|
|
|
var dista2 = Math.sqrt( ba2x * ba2x + ba2y * ba2y );
|
|
|
|
return side * Math.min( dist, dista1, dista2 );
|
|
|
|
};
|
|
|
|
|