X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=inline;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_gradient%2Fcurvegradient.cpp;h=508a46487431ca9d465ec4f1fdfa4f8811f7f855;hb=2ab94d47c09e4afe46209e87e8251e197c1f5b93;hp=d76d76d19d84f67a605d63f7ec728527799ed6e1;hpb=03c59ee4d600ee9aa075710889b5a94fdafb353a;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_gradient/curvegradient.cpp b/synfig-core/trunk/src/modules/mod_gradient/curvegradient.cpp index d76d76d..508a464 100644 --- a/synfig-core/trunk/src/modules/mod_gradient/curvegradient.cpp +++ b/synfig-core/trunk/src/modules/mod_gradient/curvegradient.cpp @@ -237,6 +237,7 @@ CurveGradient::color_func(const Point &point_, int quality, float supersample)co Real dist; float perp_dist; + bool edge_case = false; if(bline.size()==0) return Color::alpha(); @@ -306,6 +307,31 @@ CurveGradient::color_func(const Point &point_, int quality, float supersample)co p1=curve(t); // the closest point on the curve tangent=deriv(t).norm(); // the unit tangent at that point + // if the point we're nearest to is at either end of the + // bline, our distance from the curve is the distance from the + // point on the curve. we need to know which side of the + // curve we're on, so find the average of the two tangents at + // this point + if (t<0.00001 || t>0.99999) + { + if (t<0.5) + { + if (iter->get_split_tangent_flag()) + { + tangent=(iter->get_tangent1().norm()+tangent).norm(); + edge_case=true; + } + } + else + { + if (next->get_split_tangent_flag()) + { + tangent=(next->get_tangent2().norm()+tangent).norm(); + edge_case=true; + } + } + } + if(perpendicular) { tangent*=curve_length_; @@ -340,7 +366,15 @@ CurveGradient::color_func(const Point &point_, int quality, float supersample)co } else // not perpendicular { - diff=tangent.perp()*thickness*width; + if (edge_case) + { + diff=(p1-(point_-offset)); + if(diff*tangent.perp()<0) diff=-diff; + diff=diff.norm()*thickness*width; + } + else + diff=tangent.perp()*thickness*width; + p1-=diff*0.5; const Real mag(diff.inv_mag()); supersample=supersample*mag;