Searched refs:nbD (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/livarot/
H A DPathCutting.cpp33 void Path::DashPolyline(float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset) argument
35 if ( nbD <= 0 || body <= 0.0001 ) return; // pas de tirets, en fait
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);
78 int nbD = n_dash; local
79 float *dashs=(float*)malloc((nbD+1)*sizeof(float));
82 for (int i=1; i<nbD; i++) {
87 this->DashPolyline(0.0, 0.0, dlen, nbD, dashs, true, dash_offset);
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) argument
148 if ( dashInd >= nbD ) {
[all...]
H A DPath.h179 void DashPolyline(float head,float tail,float body,int nbD,float *dashs,bool stPlain,float stOffset);
240 void 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);

Completed in 17 milliseconds