Lines Matching refs:t0
771 double t0 = f.cuts[0], width = f.cuts[1] - t0;
772 return (Piecewise<T>) compose(f.segs[0],compose(Linear(-t0 / width, (1-t0) / width), g));
779 double t0 = f.cuts[idx], width = f.cuts[idx+1] - t0;
780 return (Piecewise<T>) compose(f.segs[idx],compose(Linear(-t0 / width, (1-t0) / width), g));
797 double t0=(*cut).first;
800 if (!are_near(t0,t1,EPSILON*EPSILON)) { // prevent adding cuts that are extremely close together and that may cause trouble with rounding e.g. when reversing the path
801 SBasis sub_g=compose(g, Linear(t0,t1));