Lines Matching defs:tail
33 void Path::DashPolyline(float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset)
47 DashSubPath(i-lastMI,lastMP, orig_pts, head,tail,body,nbD,dashs,stPlain,stOffset);
55 DashSubPath(orig_pts.size() - lastMI, lastMP, orig_pts, head, tail, body, nbD, dashs, stPlain, stOffset);
96 void Path::DashSubPath(int spL, int spP, std::vector<path_lineto> const &orig_pts, float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset)
113 if ( totLength <= head+tail ) return; // tout mange par la tete et la queue
173 if ( curLength >= head /*&& curLength+nl <= totLength-tail*/ ) {
174 while ( curLength <= totLength-tail && nl > 0 ) {
175 if ( enLength <= totLength-tail ) nl=enLength-curLength; else nl=totLength-tail-curLength;
240 if ( curLength <= totLength-tail && curLength+nl > totLength-tail ) {
241 nl=totLength-tail-curLength;