Lines Matching refs:dashs
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);
79 float *dashs=(float*)malloc((nbD+1)*sizeof(float));
81 dashs[0]=dash[0];
83 dashs[i]=dashs[i-1]+dash[i];
87 this->DashPolyline(0.0, 0.0, dlen, nbD, dashs, true, dash_offset);
89 free(dashs);
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)
145 while ( dashs[dashInd] < stOffset ) {
178 leftInDash=dashs[dashInd]-dashPos;
183 dashPos=dashs[dashInd];