Lines Matching refs:fEnd
846 B2DCubicBezier B2DCubicBezier::snippet(double fStart, double fEnd) const in snippet()
859 if(fTools::more(fEnd, 1.0)) in snippet()
861 fEnd = 1.0; in snippet()
863 else if(fTools::less(fEnd, 0.0)) in snippet()
865 fEnd = 0.0; in snippet()
868 if(fEnd <= fStart) in snippet()
871 const double fSplit((fEnd + fStart) * 0.5); in snippet()
884 const bool bEndIsOne(fTools::equal(fEnd, 1.0)); in snippet()
890 aRetval.split(fEnd, &aRetval, 0); in snippet()
894 fStart /= fEnd; in snippet()
907 const B2DPoint aPointB(interpolate(getStartPoint(), getEndPoint(), fEnd)); in snippet()