mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Smaller improvements in addCurveIntersections()
This commit is contained in:
parent
81a4d142f0
commit
b19bc5aaf4
1 changed files with 26 additions and 27 deletions
|
@ -1472,33 +1472,11 @@ new function() { // Scope for intersection using bezier fat-line clipping
|
|||
// to the original parameter range for v2.
|
||||
tMinNew = tMin + (tMax - tMin) * tMinClip,
|
||||
tMaxNew = tMin + (tMax - tMin) * tMaxClip;
|
||||
// Check if we need to subdivide the curves
|
||||
if (oldTDiff > 0.5 && tDiff > 0.5) {
|
||||
// Subdivide the curve which has converged the least.
|
||||
if (tMaxNew - tMinNew > uMax - uMin) {
|
||||
var parts = Curve.subdivide(v1New, 0.5),
|
||||
t = tMinNew + (tMaxNew - tMinNew) / 2;
|
||||
addCurveIntersections(
|
||||
v2, parts[0], c2, c1, locations, param,
|
||||
uMin, uMax, tMinNew, t, tDiff, !reverse, recursion);
|
||||
addCurveIntersections(
|
||||
v2, parts[1], c2, c1, locations, param,
|
||||
uMin, uMax, t, tMaxNew, tDiff, !reverse, recursion);
|
||||
} else {
|
||||
var parts = Curve.subdivide(v2, 0.5),
|
||||
t = uMin + (uMax - uMin) / 2;
|
||||
addCurveIntersections(
|
||||
parts[0], v1New, c2, c1, locations, param,
|
||||
uMin, t, tMinNew, tMaxNew, tDiff, !reverse, recursion);
|
||||
addCurveIntersections(
|
||||
parts[1], v1New, c2, c1, locations, param,
|
||||
t, uMax, tMinNew, tMaxNew, tDiff, !reverse, recursion);
|
||||
}
|
||||
} else if (Math.max(uMax - uMin, tMaxNew - tMinNew)
|
||||
if (Math.max(uMax - uMin, tMaxNew - tMinNew)
|
||||
< /*#=*/Numerical.CLIPPING_EPSILON) {
|
||||
// We have isolated the intersection with sufficient precision
|
||||
var t1 = tMinNew + (tMaxNew - tMinNew) / 2,
|
||||
t2 = uMin + (uMax - uMin) / 2;
|
||||
var t = (tMinNew + tMaxNew) / 2,
|
||||
u = (uMin + uMax) / 2;
|
||||
// Since we've been chopping up v1 and v2, we need to pass on the
|
||||
// original full curves here again to match the parameter space of
|
||||
// t1 and t2.
|
||||
|
@ -1507,8 +1485,29 @@ new function() { // Scope for intersection using bezier fat-line clipping
|
|||
v1 = c1.getValues();
|
||||
v2 = c2.getValues();
|
||||
addLocation(locations, param,
|
||||
reverse ? v2 : v1, reverse ? c2 : c1, reverse ? t2 : t1, null,
|
||||
reverse ? v1 : v2, reverse ? c1 : c2, reverse ? t1 : t2, null);
|
||||
reverse ? v2 : v1, reverse ? c2 : c1, reverse ? u : t, null,
|
||||
reverse ? v1 : v2, reverse ? c1 : c2, reverse ? t : u, null);
|
||||
} else if (oldTDiff > 0.5 && tDiff > 0.5) {
|
||||
// Subdivide the curve which has converged the least.
|
||||
if (tMaxNew - tMinNew > uMax - uMin) {
|
||||
var parts = Curve.subdivide(v1New, 0.5),
|
||||
t = (tMinNew + tMaxNew) / 2;
|
||||
addCurveIntersections(
|
||||
v2, parts[0], c2, c1, locations, param,
|
||||
uMin, uMax, tMinNew, t, tDiff, !reverse, recursion);
|
||||
addCurveIntersections(
|
||||
v2, parts[1], c2, c1, locations, param,
|
||||
uMin, uMax, t, tMaxNew, tDiff, !reverse, recursion);
|
||||
} else {
|
||||
var parts = Curve.subdivide(v2, 0.5),
|
||||
u = (uMin + uMax) / 2;
|
||||
addCurveIntersections(
|
||||
parts[0], v1New, c2, c1, locations, param,
|
||||
uMin, u, tMinNew, tMaxNew, tDiff, !reverse, recursion);
|
||||
addCurveIntersections(
|
||||
parts[1], v1New, c2, c1, locations, param,
|
||||
u, uMax, tMinNew, tMaxNew, tDiff, !reverse, recursion);
|
||||
}
|
||||
} else if (tDiff > 0) { // Iterate
|
||||
addCurveIntersections(v2, v1New, c2, c1, locations, param,
|
||||
uMin, uMax, tMinNew, tMaxNew, tDiff, !reverse, recursion);
|
||||
|
|
Loading…
Reference in a new issue